Skip to content

Commit 4c99e29

Browse files
committed
Use NULL, not false, in the terminating entry of test_data[].
1 parent 9c63ff0 commit 4c99e29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/util/regress/parse_gids/parse_gids_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static struct parse_gids_test test_data[] = {
5050
{ "1,2,3,4", &test_data[0].basegid, 0, 5, test1_out },
5151
{ "1,2,3,4", NULL, 0, 4, test2_out },
5252
{ "1,-2,3,4", &test_data[2].basegid, 0, 5, test3_out },
53-
{ NULL, false, 0, 0, NULL }
53+
{ NULL, NULL, 0, 0, NULL }
5454
};
5555

5656
static void

0 commit comments

Comments
 (0)