From: Jim Meyering Date: Mon, 28 Mar 2005 17:54:13 +0000 (+0000) Subject: (long_options): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1198 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87c01f7dcb4e945f42b072396c1403ff3bb37a6a;p=thirdparty%2Fcoreutils.git (long_options): Use NULL, not `0'. --- diff --git a/src/comm.c b/src/comm.c index c7a5cd002e..d246ba0fb9 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} };