glcpp: Fix a case of == where = probably ought to be.

Caught by a GCC warning.
This commit is contained in:
Kenneth Graunke
2010-06-16 11:56:36 -07:00
parent cbaab7093c
commit 0656f6b875

View File

@@ -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;