diff options
author | Jim Meyering <jim@meyering.net> | 2003-11-05 03:53:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-11-05 03:53:19 +0000 |
commit | df81ab2911ce995fb9e116550b7a6798b497e391 (patch) | |
tree | a06a694cbc752f15f41cbf536ca20f3642e87d48 /src/link.c | |
parent | 25e8fe41722d25c4459946dc9aa8744bef705685 (diff) | |
download | coreutils-df81ab2911ce995fb9e116550b7a6798b497e391.tar.xz |
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.
Diffstat (limited to 'src/link.c')
-rw-r--r-- | src/link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link.c b/src/link.c index d0ae1ed4d..41d4a7122 100644 --- a/src/link.c +++ b/src/link.c @@ -73,7 +73,7 @@ main (int argc, char **argv) atexit (close_stdout); parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION, - usage, AUTHORS, NULL); + usage, AUTHORS, (char const *) NULL); /* The above handles --help and --version. Since there is no other invocation of getopt, handle `--' here. */ |