commit | 0656f6b8750fe6139f74914bfe4e2c394db594e4 | [log] [tgz] |
---|---|---|
author | Kenneth Graunke <kenneth@whitecape.org> | Wed Jun 16 11:56:36 2010 -0700 |
committer | Kenneth Graunke <kenneth@whitecape.org> | Mon Jun 21 11:25:50 2010 -0700 |
tree | 9c9a89b1441627756950f62fc42ef1050e9a8da4 | |
parent | cbaab7093c43d1bc208c446367483f386dcb6bf5 [diff] [blame] |
glcpp: Fix a case of == where = probably ought to be. Caught by a GCC warning.
diff --git a/glcpp/glcpp-parse.y b/glcpp/glcpp-parse.y index 807cf59..ede2bb8 100644 --- a/glcpp/glcpp-parse.y +++ b/glcpp/glcpp-parse.y
@@ -1356,7 +1356,7 @@ else list->head = last->next; if (last == list->tail) - list->tail == NULL; + list->tail = NULL; } } else { node_prev = node;