Fix the clang fix. Compiler messages are visible again.

[COMPILER]
* BUG: Fix the clang fix. Compiler messages are visible again.
This commit is contained in:
gambas 2018-06-19 16:09:30 +02:00
parent dd26e934ac
commit 38eb07adf5

View File

@ -89,7 +89,7 @@ char *ERROR_get(void)
if (*n >= MAX_ERROR_MSG)
return;
ERROR_info.msg[*n++] = c;
ERROR_info.msg[(*n)++] = c;
}
void _add_string(const char *s, int *n)