From abea2d5a7e015dce428bd2d748c81650514c5efc Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Fri, 15 Apr 2016 02:53:52 +0000 Subject: [PATCH] Set test_argv to NULL, not 0, if not executing a specific test MFC after: 1 week Submitted by: pfg Sponsored by: EMC / Isilon Storage Division --- tests/sys/file/flock_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sys/file/flock_helper.c b/tests/sys/file/flock_helper.c index 49e47b83089..0fca15e48ef 100644 --- a/tests/sys/file/flock_helper.c +++ b/tests/sys/file/flock_helper.c @@ -1566,7 +1566,7 @@ main(int argc, const char *argv[]) } else { testnum = 0; test_argc = 0; - test_argv = 0; + test_argv = NULL; } sa.sa_handler = ignore_alarm;