Skip to content
Snippets Groups Projects
Commit 780ef999 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

lexer: fixed typo

parent 98211708
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,7 @@ critical { lval.t = yytext; lval.i = LOG_UPTO(LOG_CRIT); return LOG_LEVEL; }
all {
lval.t = yytext;
lval.i = LOG_UPTO(LOG_INFO);
fprintf(stderr, "Warning: log severity 'all'' is no longer "
fprintf(stderr, "Warning: log severity 'all' is no longer "
"supported. Using 'info' instead.\n");
return LOG_LEVEL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment