From: Jim Meyering Date: Mon, 28 Mar 2005 18:14:15 +0000 (+0000) Subject: (delimit_method_string): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1180 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31e6aa70e60e30c876e7c7b47b86b915b837d828;p=thirdparty%2Fcoreutils.git (delimit_method_string): Use NULL, not `0'. --- diff --git a/src/uniq.c b/src/uniq.c index 736c2813e9..27322e93ea 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[] =