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_clone.cpp | |
parent | fa33d0b85403da94e3f4a7e6c868af215c076b4b (diff) |
glsl2: Fix spelling of "sentinel."
Diffstat (limited to 'src/glsl/ir_clone.cpp')
-rw-r--r-- | src/glsl/ir_clone.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_clone.cpp b/src/glsl/ir_clone.cpp index f97080d2056..6be3e59a95d 100644 --- a/src/glsl/ir_clone.cpp +++ b/src/glsl/ir_clone.cpp @@ -330,7 +330,7 @@ ir_constant::clone(struct hash_table *ht) const c->type = this->type; for (exec_node *node = this->components.head - ; !node->is_tail_sentinal() + ; !node->is_tail_sentinel() ; node = node->next) { ir_constant *const orig = (ir_constant *) node; |