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 | |
parent | db097a9a3ff532d37875b8cd911dda0515a60dcd (diff) |
glsl/apps: Include missing header, properly escape format strings.
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/apps/process.c | 5 | ||||
-rw-r--r-- | src/glsl/apps/purify.c | 1 | ||||
-rw-r--r-- | src/glsl/apps/tokenise.c | 5 | ||||
-rw-r--r-- | src/glsl/apps/version.c | 1 |
4 files changed, 8 insertions, 4 deletions
diff --git a/src/glsl/apps/process.c b/src/glsl/apps/process.c index 28b415c3ffd..e20b68b1a9a 100644 --- a/src/glsl/apps/process.c +++ b/src/glsl/apps/process.c @@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <assert.h> #include "../pp/sl_pp_public.h" @@ -235,11 +236,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: diff --git a/src/glsl/apps/purify.c b/src/glsl/apps/purify.c index 435bdbe5145..53ba2530225 100644 --- a/src/glsl/apps/purify.c +++ b/src/glsl/apps/purify.c @@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include "../pp/sl_pp_public.h" 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: diff --git a/src/glsl/apps/version.c b/src/glsl/apps/version.c index f2594319921..4570f86217e 100644 --- a/src/glsl/apps/version.c +++ b/src/glsl/apps/version.c @@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <assert.h> #include "../pp/sl_pp_public.h" |