From f424ec1b800db38f97ec431e969d6ec15cc5176b Mon Sep 17 00:00:00 2001 From: Eugene Grosbein Date: Sun, 25 Aug 2019 01:05:01 +0000 Subject: [PATCH] last(1): fix style after r351459 Reported by: cem MFC after: 2 weeks X-MFC-With: 351459 --- usr.bin/last/last.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/last/last.c b/usr.bin/last/last.c index 16acc6e15693..d197afe7eb0b 100644 --- a/usr.bin/last/last.c +++ b/usr.bin/last/last.c @@ -159,7 +159,7 @@ main(int argc, char *argv[]) (void) setlocale(LC_CTYPE, ""); p = nl_langinfo(CODESET); - if (strcmp (p, "UTF-8") == 0 || strcmp (p, "US-ASCII") == 0) + if (strcmp(p, "UTF-8") == 0 || strcmp(p, "US-ASCII") == 0) noctfix = 1; argc = xo_parse_args(argc, argv);