diff options
author | Eric Anholt <[email protected]> | 2010-07-29 13:52:25 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-29 14:02:19 -0700 |
commit | 62c4763b707e2227409f81b09dd5cf6e4410ea6a (patch) | |
tree | ed084a0aca6eddd3df297b9c8c14b2ced7e7b7f8 /src/glsl/ir_function_inlining.cpp | |
parent | fa33d0b85403da94e3f4a7e6c868af215c076b4b (diff) |
glsl2: Fix spelling of "sentinel."
Diffstat (limited to 'src/glsl/ir_function_inlining.cpp')
-rw-r--r-- | src/glsl/ir_function_inlining.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_function_inlining.cpp b/src/glsl/ir_function_inlining.cpp index 9daffeb0171..77c264f288b 100644 --- a/src/glsl/ir_function_inlining.cpp +++ b/src/glsl/ir_function_inlining.cpp @@ -96,7 +96,7 @@ replace_return_with_assignment(ir_instruction *ir, void *data) /* un-valued return has to be the last return, or we shouldn't * have reached here. (see can_inline()). */ - assert(!ret->next->is_tail_sentinal()); + assert(!ret->next->is_tail_sentinel()); ret->remove(); } } |