From 3cae70f6e6369974527a534127804cde727eab55 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 28 Mar 2005 18:17:40 +0000 Subject: [PATCH] (long_options): Use NULL, not `0'. --- src/fmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fmt.c b/src/fmt.c index 26e1db0eea..81db109a79 100644 --- a/src/fmt.c +++ b/src/fmt.c @@ -314,7 +314,7 @@ static const struct option long_options[] = {"width", required_argument, NULL, 'w'}, {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, - {0, 0, 0, 0}, + {NULL, 0, NULL, 0}, }; int -- 2.47.3