From: Masatake YAMATO Date: Wed, 1 Feb 2023 17:34:20 +0000 (+0900) Subject: lsfd: don't put a spcae between a function and its arguments X-Git-Tag: v2.39-rc1~96^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb097fb7eeeff84456a41cd5f48edd5dc88700f4;p=thirdparty%2Futil-linux.git lsfd: don't put a spcae between a function and its arguments Signed-off-by: Masatake YAMATO --- diff --git a/misc-utils/lsfd-sock-xinfo.c b/misc-utils/lsfd-sock-xinfo.c index 5f48a46a3c..07b921036c 100644 --- a/misc-utils/lsfd-sock-xinfo.c +++ b/misc-utils/lsfd-sock-xinfo.c @@ -601,7 +601,7 @@ static const struct sock_xinfo_class tcp_xinfo_class = { static bool L3_verify_initial_line(const char *line) { /* At least we expect two white spaces. */ - if (strncmp (line, " ", 2) != 0) + if (strncmp(line, " ", 2) != 0) return false; line += 2;