From: Jim Meyering Date: Tue, 29 Mar 2005 11:56:10 +0000 (+0000) Subject: (long_options): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=363dc86fce1b8383094bea55b18c912bcc4b5144;p=thirdparty%2Fcoreutils.git (long_options): Use NULL, not `0'. --- diff --git a/lib/long-options.c b/lib/long-options.c index 1c4e74a001..77e849834a 100644 --- a/lib/long-options.c +++ b/lib/long-options.c @@ -1,6 +1,6 @@ /* Utility to accept --help and --version options as unobtrusively as possible. - Copyright (C) 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004 Free + Copyright (C) 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -35,9 +35,9 @@ static struct option const long_options[] = { - {"help", no_argument, 0, 'h'}, - {"version", no_argument, 0, 'v'}, - {0, 0, 0, 0} + {"help", no_argument, NULL, 'h'}, + {"version", no_argument, NULL, 'v'}, + {NULL, 0, NULL, 0} }; /* Process long options --help and --version, but only if argc == 2.