1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

Cast NULL to `(char *)' in call to variadic function,

parse_long_options, so that it works even on systems for which
sizeof char* != sizeof int.
This commit is contained in:
Jim Meyering
2003-11-05 03:53:19 +00:00
parent 25e8fe4172
commit df81ab2911
29 changed files with 29 additions and 29 deletions

View File

@@ -65,7 +65,7 @@ main (int argc, char **argv)
atexit (close_stdout);
parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
usage, AUTHORS, NULL);
usage, AUTHORS, (char const *) NULL);
if (1 < argc)
error (0, 0, _("ignoring all arguments"));