Commit ed3da23e authored by Fred Drake's avatar Fred Drake

parser_compare_nodes(): Corrected a minor type error; eliminate one GCC

	warning (at least under Linux).
parent 03e35c54
......@@ -266,7 +266,7 @@ parser_compare_nodes(left, right)
for (j = 0; j < NCH(left); ++j) {
int v = parser_compare_nodes(CHILD(left, j), CHILD(right, j));
if (v != NULL)
if (v != 0)
return (v);
}
return (0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment