diff options
author | Michal Krol <[email protected]> | 2009-09-24 10:55:37 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-09-24 10:55:37 +0200 |
commit | e8e3fe15e1b0f75c43e197f8875a7fae1468f584 (patch) | |
tree | 24c3e928017de47c0f69fc08a3d8e1b1be32fe7a /src/glsl/apps/tokenise.c | |
parent | db097a9a3ff532d37875b8cd911dda0515a60dcd (diff) |
glsl/apps: Include missing header, properly escape format strings.
Diffstat (limited to 'src/glsl/apps/tokenise.c')
-rw-r--r-- | src/glsl/apps/tokenise.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/glsl/apps/tokenise.c b/src/glsl/apps/tokenise.c index 9f95424f5c8..d6b9c4fa045 100644 --- a/src/glsl/apps/tokenise.c +++ b/src/glsl/apps/tokenise.c @@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <assert.h> #include "../pp/sl_pp_public.h" @@ -219,11 +220,11 @@ main(int argc, break; case SL_PP_MODASSIGN: - fprintf(out, "%= "); + fprintf(out, "%%= "); break; case SL_PP_MODULO: - fprintf(out, "% "); + fprintf(out, "%% "); break; case SL_PP_LSHIFTASSIGN: |