From 4c99e29bb3a72c3b0caa30c1f20eff21822fcc8d Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" <Todd.Miller@sudo.ws> Date: Sat, 16 Nov 2024 13:48:23 -0700 Subject: [PATCH] Use NULL, not false, in the terminating entry of test_data[]. --- lib/util/regress/parse_gids/parse_gids_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/regress/parse_gids/parse_gids_test.c b/lib/util/regress/parse_gids/parse_gids_test.c index 3a94a72e60..1edf29f34b 100644 --- a/lib/util/regress/parse_gids/parse_gids_test.c +++ b/lib/util/regress/parse_gids/parse_gids_test.c @@ -50,7 +50,7 @@ static struct parse_gids_test test_data[] = { { "1,2,3,4", &test_data[0].basegid, 0, 5, test1_out }, { "1,2,3,4", NULL, 0, 4, test2_out }, { "1,-2,3,4", &test_data[2].basegid, 0, 5, test3_out }, - { NULL, false, 0, 0, NULL } + { NULL, NULL, 0, 0, NULL } }; static void