We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent0787646 commit385959bCopy full SHA for 385959b
src/interfaces/ecpg/preproc/variable.c
@@ -60,7 +60,7 @@ find_struct_member(const char *name, char *str, struct ECPGstruct_member *member
60
intcount;
61
62
/*
63
- * We don't care about what's inside the arraybraces so
+ * We don't care about what's inside the arraybrackets so
64
* just eat up the character
65
*/
66
for (count=1,end=next+1;count;end++)
@@ -203,8 +203,8 @@ find_variable(const char *name)
203
if (*next=='[')
204
{
205
206
- * We don't care about what's inside the arraybraces so just eat
207
- * up the characters
+ * We don't care about what's inside the arraybrackets so just
+ *eatup the characters
208
209
210
@@ -217,7 +217,7 @@ find_variable(const char *name)
217
count--;
218
break;
219
case'\0':
220
-mmfatal(PARSE_ERROR,"unmatchedbrace in variable \"%s\"",name);
+mmfatal(PARSE_ERROR,"unmatchedbracket in variable \"%s\"",name);
221
222
default:
223