summaryrefslogtreecommitdiff
path: root/src/glsl/apps
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2009-09-24 10:55:37 +0200
committerMichal Krol <michal@vmware.com>2009-09-24 10:55:37 +0200
commite8e3fe15e1b0f75c43e197f8875a7fae1468f584 (patch)
tree24c3e928017de47c0f69fc08a3d8e1b1be32fe7a /src/glsl/apps
parentdb097a9a3ff532d37875b8cd911dda0515a60dcd (diff)
glsl/apps: Include missing header, properly escape format strings.
Diffstat (limited to 'src/glsl/apps')
-rw-r--r--src/glsl/apps/process.c5
-rw-r--r--src/glsl/apps/purify.c1
-rw-r--r--src/glsl/apps/tokenise.c5
-rw-r--r--src/glsl/apps/version.c1
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"