From: Masatake YAMATO Date: Thu, 16 Feb 2023 19:03:49 +0000 (+0900) Subject: test_mkfds: add missing terminator of the option spec list X-Git-Tag: v2.39-rc1~63^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e244bab7acd7b2afde4cb3eabe432662655ea15;p=thirdparty%2Futil-linux.git test_mkfds: add missing terminator of the option spec list Signed-off-by: Masatake YAMATO --- diff --git a/tests/helpers/test_mkfds.c b/tests/helpers/test_mkfds.c index 8118fc94f9..9eebf52148 100644 --- a/tests/helpers/test_mkfds.c +++ b/tests/helpers/test_mkfds.c @@ -2097,6 +2097,7 @@ int main(int argc, char **argv) { "quiet", no_argument, NULL, 'q' }, { "dont-puase", no_argument, NULL, 'c' }, { "help", no_argument, NULL, 'h' }, + { NULL, 0, NULL, 0 }, }; while ((c = getopt_long(argc, argv, "lhqcI:r:", longopts, NULL)) != -1) {