diff options
author | Keith Whitwell <[email protected]> | 2009-12-23 15:56:31 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-12-23 16:10:37 +0000 |
commit | cdd25ab8cfa407d85f9efd78c97aa575aee94d28 (patch) | |
tree | 97e04dd1fc0d30e60ecb60597876a0338a8dc33e /src/glsl | |
parent | cc7a2d8e6422f632b28e740afc4ab29bd68ac0f9 (diff) |
glsl/pp: quieten compiler about missing case statements
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/pp/sl_pp_process.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glsl/pp/sl_pp_process.c b/src/glsl/pp/sl_pp_process.c index 563ea948e70..f89986dd8ef 100644 --- a/src/glsl/pp/sl_pp_process.c +++ b/src/glsl/pp/sl_pp_process.c @@ -146,6 +146,9 @@ sl_pp_process_get(struct sl_pp_context *context, found_eof = 1; found_eol = 1; break; + + default: + break; } } |