diff options
author | Michal Krol <[email protected]> | 2009-11-10 00:15:54 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-11-10 00:15:54 +0100 |
commit | b5c8c87eab4cbc4f05cbd98d7647b9b83607f976 (patch) | |
tree | 84376f973f5fb4157e1f3aded461881c00147cc2 /src/glsl/apps/process.c | |
parent | d37f7694b60d3dad8daf9e2af4e509c15b996553 (diff) |
glsl/apps: Update for glsl/pp interface changes.
Diffstat (limited to 'src/glsl/apps/process.c')
-rw-r--r-- | src/glsl/apps/process.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/glsl/apps/process.c b/src/glsl/apps/process.c index e20b68b1a9a..7f392613e09 100644 --- a/src/glsl/apps/process.c +++ b/src/glsl/apps/process.c @@ -41,6 +41,8 @@ main(int argc, char *inbuf; struct sl_pp_purify_options options; char *outbuf; + char errmsg[100] = ""; + unsigned int errline = 0; struct sl_pp_context *context; struct sl_pp_token_info *tokens; unsigned int version; @@ -91,8 +93,8 @@ main(int argc, memset(&options, 0, sizeof(options)); - if (sl_pp_purify(inbuf, &options, &outbuf)) { - fprintf(out, "$PURIFYERROR\n"); + if (sl_pp_purify(inbuf, &options, &outbuf, errmsg, sizeof(errmsg), &errline)) { + fprintf(out, "$PURIFYERROR %s\n", errmsg); free(inbuf); fclose(out); |