* mount.cc (main): Eliminate excess arguments in printf.

This commit is contained in:
Christopher Faylor 2001-09-01 19:58:40 +00:00
parent 2bcd6fb89d
commit db8b09c306
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sat Sep 1 15:58:11 2001 Christopher Faylor <cgf@cygnus.com>
* mount.cc (main): Eliminate excess arguments in printf.
2001-08-30 Egor Duda <deo@logos-m.ru>
* dumper.h: Update copyright notice.

View File

@ -217,7 +217,7 @@ main (int argc, char **argv)
if (optind >= argc)
fprintf (stderr, "%s: not enough arguments\n", progname);
else
fprintf (stderr, "%s: too many arguments\n", progname, optind, argc);
fprintf (stderr, "%s: too many arguments\n", progname);
usage ();
}
if (force || !mount_already_exists (argv[optind + 1], flags))