]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lsfd: don't put a spcae between a function and its arguments
authorMasatake YAMATO <yamato@redhat.com>
Wed, 1 Feb 2023 17:34:20 +0000 (02:34 +0900)
committerMasatake YAMATO <yamato@redhat.com>
Thu, 2 Feb 2023 14:20:23 +0000 (23:20 +0900)
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
misc-utils/lsfd-sock-xinfo.c

index 5f48a46a3c3a2acde04851e2104f6f8b8a192a33..07b921036cb5d88f5de22f1926706482c771cc45 100644 (file)
@@ -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;