From 77c6ac360f94f01b8674632cd44434b4c8c3bea8 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 28 Mar 2005 18:10:49 +0000 Subject: (long_options): Use NULL, not `0'. --- src/stat.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/stat.c b/src/stat.c index a3cc0945e..45b504ef0 100644 --- a/src/stat.c +++ b/src/stat.c @@ -100,12 +100,12 @@ #define AUTHORS "Michael Meskes" static struct option const long_options[] = { - {"link", no_argument, 0, 'l'}, /* deprecated. FIXME: remove in 2003 */ - {"dereference", no_argument, 0, 'L'}, - {"file-system", no_argument, 0, 'f'}, - {"filesystem", no_argument, 0, 'f'}, /* obsolete and undocumented alias */ - {"format", required_argument, 0, 'c'}, - {"terse", no_argument, 0, 't'}, + {"link", no_argument, NULL, 'l'}, /* deprecated. FIXME: remove in 2003 */ + {"dereference", no_argument, NULL, 'L'}, + {"file-system", no_argument, NULL, 'f'}, + {"filesystem", no_argument, NULL, 'f'}, /* obsolete and undocumented alias */ + {"format", required_argument, NULL, 'c'}, + {"terse", no_argument, NULL, 't'}, {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, {NULL, 0, NULL, 0} -- cgit v1.2.3-70-g09d2