diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-28 18:17:40 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-28 18:17:40 +0000 |
commit | 3cae70f6e6369974527a534127804cde727eab55 (patch) | |
tree | 988bd2cca59b8aabb88b662aa3b2bc38e9f4d9cd /src | |
parent | eab72607cc3d0877391147429b22012091624322 (diff) | |
download | coreutils-3cae70f6e6369974527a534127804cde727eab55.tar.xz |
(long_options): Use NULL, not `0'.
Diffstat (limited to 'src')
-rw-r--r-- | src/fmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -314,7 +314,7 @@ static const struct option long_options[] = {"width", required_argument, NULL, 'w'}, {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, - {0, 0, 0, 0}, + {NULL, 0, NULL, 0}, }; int |