glcpp: Fix `can not` to `cannot` in error message

Signed-off-by: Chris Forbes <chrisf@ijw.co.nz>
This commit is contained in:
Chris Forbes 2014-12-07 11:49:28 +13:00
parent b49a069bd3
commit 6b01969345
2 changed files with 4 additions and 4 deletions

View File

@ -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) {

View File

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