diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-28 18:14:15 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-28 18:14:15 +0000 |
commit | 31e6aa70e60e30c876e7c7b47b86b915b837d828 (patch) | |
tree | dbc02c75df9a1d333ace4f8f09a1444e89e84dde /src | |
parent | 5208f4b7ba5819531bfd935e2642c6d850d0756e (diff) | |
download | coreutils-31e6aa70e60e30c876e7c7b47b86b915b837d828.tar.xz |
(delimit_method_string): Use NULL, not `0'.
Diffstat (limited to 'src')
-rw-r--r-- | src/uniq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uniq.c b/src/uniq.c index 736c2813e..27322e93e 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -98,7 +98,7 @@ enum delimit_method static char const *const delimit_method_string[] = { - "none", "prepend", "separate", 0 + "none", "prepend", "separate", NULL }; static enum delimit_method const delimit_method_map[] = |