diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-29 11:56:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-29 11:56:10 +0000 |
commit | 363dc86fce1b8383094bea55b18c912bcc4b5144 (patch) | |
tree | d73def2e0cbf76e9bcb46311751bf8688beeff77 /lib | |
parent | a2131c5559ae04ae95345263b048fc8ee123feee (diff) | |
download | coreutils-363dc86fce1b8383094bea55b18c912bcc4b5144.tar.xz |
(long_options): Use NULL, not `0'.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/long-options.c | 8 |
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. |