From cb097fb7eeeff84456a41cd5f48edd5dc88700f4 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Thu, 2 Feb 2023 02:34:20 +0900 Subject: [PATCH] lsfd: don't put a spcae between a function and its arguments Signed-off-by: Masatake YAMATO --- misc-utils/lsfd-sock-xinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3