mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 22:38:05 +02:00
glcpp: Fix can not to cannot in error message
Signed-off-by: Chris Forbes <chrisf@ijw.co.nz>
This commit is contained in:
parent
b49a069bd3
commit
6b01969345
2 changed files with 4 additions and 4 deletions
|
|
@ -293,7 +293,7 @@ control_line_success:
|
|||
|| strcmp("__VERSION__", $4) == 0
|
||||
|| strncmp("GL_", $4, 3) == 0)
|
||||
glcpp_error(& @1, parser, "Built-in (pre-defined)"
|
||||
" macro names can not be undefined.");
|
||||
" macro names cannot be undefined.");
|
||||
|
||||
macro = hash_table_find (parser->defines, $4);
|
||||
if (macro) {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
0:1(1): preprocessor error: Built-in (pre-defined) macro names can not be undefined.
|
||||
0:2(1): preprocessor error: Built-in (pre-defined) macro names can not be undefined.
|
||||
0:3(1): preprocessor error: Built-in (pre-defined) macro names can not be undefined.
|
||||
0:1(1): preprocessor error: Built-in (pre-defined) macro names cannot be undefined.
|
||||
0:2(1): preprocessor error: Built-in (pre-defined) macro names cannot be undefined.
|
||||
0:3(1): preprocessor error: Built-in (pre-defined) macro names cannot be undefined.
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue