diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-28 17:54:13 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-28 17:54:13 +0000 |
commit | 87c01f7dcb4e945f42b072396c1403ff3bb37a6a (patch) | |
tree | 785e46e2e0da9c11c4951167ae7b17fd8d0d8b8b | |
parent | 47f1cd0d8ae6c2a3a423d0d4e85f9af1658dad63 (diff) | |
download | coreutils-87c01f7dcb4e945f42b072396c1403ff3bb37a6a.tar.xz |
(long_options): Use NULL, not `0'.
-rw-r--r-- | src/comm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comm.c b/src/comm.c index c7a5cd002..d246ba0fb 100644 --- a/src/comm.c +++ b/src/comm.c @@ -1,5 +1,5 @@ /* comm -- compare two sorted files line by line. - Copyright (C) 86, 90, 91, 1995-2004 Free Software Foundation, Inc. + Copyright (C) 86, 90, 91, 1995-2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -57,7 +57,7 @@ static struct option const long_options[] = { {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, - {0, 0, 0, 0} + {NULL, 0, NULL, 0} }; |