diff options
author | Michal Krol <[email protected]> | 2009-09-24 08:43:54 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-09-24 08:43:54 +0200 |
commit | 13f9a39cea81bf8f1efd4aca1467c63a49a42dab (patch) | |
tree | 9137aec3b00c1bf6e245d2bb5cf72fc283618698 /src | |
parent | 9a1447d449209635e481c7f9bd02084864e17419 (diff) |
glsl/apps: Fix apps after pp interface changes.
Diffstat (limited to 'src')
-rw-r--r-- | src/glsl/apps/process.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/glsl/apps/process.c b/src/glsl/apps/process.c index 4fff3570c1a..28b415c3ffd 100644 --- a/src/glsl/apps/process.c +++ b/src/glsl/apps/process.c @@ -367,11 +367,7 @@ main(int argc, break; case SL_PP_LINE: - fprintf(out, "#line %u", outtokens[i].data.line); - break; - - case SL_PP_FILE: - fprintf(out, " #file %u", outtokens[i].data.file); + fprintf(out, "#line %u %u", outtokens[i].data.line.lineno, outtokens[i].data.line.fileno); break; default: |