mirror of https://github.com/torvalds/linux.git
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: Valentin Schneider <vschneid@redhat.com> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
This commit is contained in:
parent
2900bcbee3
commit
cbb557ba92
|
|
@ -1731,7 +1731,9 @@ static int parse_pred(const char *str, void *data,
|
|||
maskstart = i;
|
||||
|
||||
/* Walk the cpulist until closing } */
|
||||
for (; str[i] && str[i] != '}'; i++);
|
||||
for (; str[i] && str[i] != '}'; i++)
|
||||
;
|
||||
|
||||
if (str[i] != '}') {
|
||||
parse_error(pe, FILT_ERR_MISSING_BRACE_CLOSE, pos + i);
|
||||
goto err_free;
|
||||
|
|
|
|||
Loading…
Reference in New Issue