Commit cbb557ba authored by Valentin Schneider's avatar Valentin Schneider Committed by Steven Rostedt (Google)

tracing/filters: Fix coding style issues

Recent commits have introduced some coding style issues, fix those up.

Link: https://lkml.kernel.org/r/20230901151039.125186-5-vschneid@redhat.com

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: default avatarValentin Schneider <vschneid@redhat.com>
Signed-off-by: default avatarSteven Rostedt (Google) <rostedt@goodmis.org>
parent 2900bcbe
...@@ -1731,7 +1731,9 @@ static int parse_pred(const char *str, void *data, ...@@ -1731,7 +1731,9 @@ static int parse_pred(const char *str, void *data,
maskstart = i; maskstart = i;
/* Walk the cpulist until closing } */ /* Walk the cpulist until closing } */
for (; str[i] && str[i] != '}'; i++); for (; str[i] && str[i] != '}'; i++)
;
if (str[i] != '}') { if (str[i] != '}') {
parse_error(pe, FILT_ERR_MISSING_BRACE_CLOSE, pos + i); parse_error(pe, FILT_ERR_MISSING_BRACE_CLOSE, pos + i);
goto err_free; goto err_free;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment