mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
glcpp: Fix a case of == where = probably ought to be.
Caught by a GCC warning.
This commit is contained in:
parent
cbaab7093c
commit
0656f6b875
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue