parser: Use all lower-case for logs

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-02-15 17:01:28 -05:00
parent e9865d346e
commit 41f5633198

View File

@@ -300,7 +300,7 @@ parse_preprocess(struct rifle_state *state)
break;
case TT_ENDIF:
if (state->ifx_depth == 0) {
trace_error(state, "Extraneous '#endif' directive\n");
trace_error(state, "extraneous '#endif' directive\n");
return -1;
}
@@ -342,7 +342,7 @@ parser_parse(struct rifle_state *state)
}
if (state->ifx_depth > 0) {
trace_error(state, "Unterminated '#if' directive\n");
trace_error(state, "unterminated '#if' directive\n");
return -1;
}
break;