From: Jim Meyering Date: Fri, 24 Aug 2001 08:41:26 +0000 (+0000) Subject: Use `n_users' in place of `argc - optind' in two more places. X-Git-Tag: TEXTUTILS-2_0_15~341 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c2368bab8f03b585226c988f832f5f9383ac3e7;p=platform%2Fupstream%2Fcoreutils.git Use `n_users' in place of `argc - optind' in two more places. --- diff --git a/src/pinky.c b/src/pinky.c index 53bc33ef5..74d0a8902 100644 --- a/src/pinky.c +++ b/src/pinky.c @@ -573,9 +573,9 @@ main (int argc, char **argv) } if (do_short_format) - short_pinky (UTMP_FILE, argc - optind, argv + optind); + short_pinky (UTMP_FILE, n_users, argv + optind); else - long_pinky (argc - optind, argv + optind); + long_pinky (n_users, argv + optind); exit (0); }