]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lib/fileeq.c Fix a typo in message.
authorMasanari Iida <standby24x7@gmail.com>
Mon, 24 Mar 2025 07:21:44 +0000 (16:21 +0900)
committerMasanari Iida <standby24x7@gmail.com>
Mon, 24 Mar 2025 07:21:44 +0000 (16:21 +0900)
This patch fixes a spelling typo in a command message.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
lib/fileeq.c

index 1495636772b7410a719966375813736e3466bf56..ffd208962d64f4e6fe2979c402acd57409d58913 100644 (file)
@@ -634,7 +634,7 @@ int main(int argc, char *argv[])
                printf("1st vs. 3rd: %s\n", rc == 1 ? "MATCH" : "NOT-MATCH");
 
                rc = ul_fileeq(&eq, &b, &c);
-               printf("2st vs. 3rd: %s\n", rc == 1 ? "MATCH" : "NOT-MATCH");
+               printf("2nd vs. 3rd: %s\n", rc == 1 ? "MATCH" : "NOT-MATCH");
        }
 
        ul_fileeq_data_deinit(&a);