projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbaab70
)
glcpp: Fix a case of == where = probably ought to be.
author
Kenneth Graunke
<kenneth@whitecape.org>
Wed, 16 Jun 2010 18:56:36 +0000
(11:56 -0700)
committer
Kenneth Graunke
<kenneth@whitecape.org>
Mon, 21 Jun 2010 18:25:50 +0000
(11:25 -0700)
Caught by a GCC warning.
glcpp/glcpp-parse.y
patch
|
blob
|
history
diff --git
a/glcpp/glcpp-parse.y
b/glcpp/glcpp-parse.y
index 807cf5950900cb34800533ee7e974a8539f18af3..ede2bb88fd17416c75a5cdf462d8ceeb1d12d274 100644
(file)
--- a/
glcpp/glcpp-parse.y
+++ b/
glcpp/glcpp-parse.y
@@
-1356,7
+1356,7
@@
_glcpp_parser_expand_token_list (glcpp_parser_t *parser,
else
list->head = last->next;
if (last == list->tail)
- list->tail =
=
NULL;
+ list->tail = NULL;
}
} else {
node_prev = node;