From 1e943dade8b6de3fdc23a3ac55a077f5b0ccd047 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sat, 11 Feb 2023 04:29:01 +0000 Subject: [PATCH] waitpid: prettify options terminator MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Weißschuh --- misc-utils/waitpid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-utils/waitpid.c b/misc-utils/waitpid.c index 0be89faf11..f7c5d4166e 100644 --- a/misc-utils/waitpid.c +++ b/misc-utils/waitpid.c @@ -179,7 +179,7 @@ static int parse_options(int argc, char **argv) { "exited", no_argument, NULL, 'e' }, { "version", no_argument, NULL, 'V' }, { "help", no_argument, NULL, 'h' }, - { NULL, 0, NULL, 0 }, + { 0 } }; while ((c = getopt_long (argc, argv, "vVht:e", longopts, NULL)) != -1) { -- 2.47.2