diff options
author | Brian Paul <brianp@vmware.com> | 2011-11-08 08:23:16 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2011-11-08 13:51:50 -0700 |
commit | fab88822735e7a8eeb0ce13ff13f90184e916f9f (patch) | |
tree | 12e630787f27ca82ca40744e934e6b92b9ff8e96 /src/glsl | |
parent | 59012c31337f104aedfe69ca6d3cf784581df544 (diff) |
glsl: remove trailing comma to silence warning
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/ir_uniform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_uniform.h b/src/glsl/ir_uniform.h index f53388c5e4d..be9f6b25437 100644 --- a/src/glsl/ir_uniform.h +++ b/src/glsl/ir_uniform.h @@ -47,7 +47,7 @@ enum gl_uniform_driver_format { /** * Store boolean data as integer using ~0 for \c true. */ - uniform_bool_int_0_not0, + uniform_bool_int_0_not0 }; struct gl_uniform_driver_storage { |