From: Masanari Iida Date: Mon, 24 Mar 2025 07:21:44 +0000 (+0900) Subject: lib/fileeq.c Fix a typo in message. X-Git-Tag: v2.41.1~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5e79a429ec331509ba55449b7fdeb3cba1bfc54;p=thirdparty%2Futil-linux.git lib/fileeq.c Fix a typo in message. This patch fixes a spelling typo in a command message. Signed-off-by: Masanari Iida (cherry picked from commit ccda6b9abde4425c03bf9c8da967fa02a64d0887) --- diff --git a/lib/fileeq.c b/lib/fileeq.c index 149563677..ffd208962 100644 --- a/lib/fileeq.c +++ b/lib/fileeq.c @@ -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);