diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-28 18:21:13 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-28 18:21:13 +0000 |
commit | 734cf53a3ca28185869b0defdb5de9554e60343b (patch) | |
tree | 85e41914c2fa1e9f47965a6bf41b7681d5c370b6 | |
parent | 1df790f540a306ebe7544002dca09d016305f37b (diff) | |
download | coreutils-734cf53a3ca28185869b0defdb5de9554e60343b.tar.xz |
(long_options): Use NULL, not `0'.
-rw-r--r-- | src/pr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -775,7 +775,7 @@ static struct option const long_options[] = {"page-width", required_argument, NULL, 'W'}, {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, - {0, 0, 0, 0} + {NULL, 0, NULL, 0} }; /* Return the number of columns that have either an open file or |