summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-29 11:56:10 +0000
committerJim Meyering <jim@meyering.net>2005-03-29 11:56:10 +0000
commit363dc86fce1b8383094bea55b18c912bcc4b5144 (patch)
treed73def2e0cbf76e9bcb46311751bf8688beeff77
parenta2131c5559ae04ae95345263b048fc8ee123feee (diff)
downloadcoreutils-363dc86fce1b8383094bea55b18c912bcc4b5144.tar.xz
(long_options): Use NULL, not `0'.
-rw-r--r--lib/long-options.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/long-options.c b/lib/long-options.c
index 1c4e74a00..77e849834 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.