glcpp: Fix a case of == where = probably ought to be.
Caught by a GCC warning.
This commit is contained in:
@@ -1356,7 +1356,7 @@ _glcpp_parser_expand_token_list (glcpp_parser_t *parser,
|
|||||||
else
|
else
|
||||||
list->head = last->next;
|
list->head = last->next;
|
||||||
if (last == list->tail)
|
if (last == list->tail)
|
||||||
list->tail == NULL;
|
list->tail = NULL;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
node_prev = node;
|
node_prev = node;
|
||||||
|
Reference in New Issue
Block a user