Skip to content

Commit e08dfaf

Browse files
committed
main: fix a incorrect error message about --_paramdef
Signed-off-by: Masatake YAMATO <[email protected]>
1 parent fd781c1 commit e08dfaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/parse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3553,7 +3553,7 @@ static bool processLangDefineParam (const langType language,
35533553
for (; p < name_end; p++)
35543554
{
35553555
if (!isalnum ((unsigned char) *p) && *p != '_')
3556-
error (FATAL, "unacceptable char as part of extra name in \"--%s\" option: '%c'",
3556+
error (FATAL, "unacceptable char as part of parameter name in \"--%s\" option: '%c'",
35573557
option, *p);
35583558
}
35593559

0 commit comments

Comments
 (0)