diff mbox series

[1/2] tst_tmpdir: Remove NULL from static

Message ID 20240620054958.554319-1-pvorel@suse.cz
State Changes Requested
Headers show
Series [1/2] tst_tmpdir: Remove NULL from static | expand

Commit Message

Petr Vorel June 20, 2024, 5:49 a.m. UTC
Not needed, reported by checkpatch.pl.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 lib/tst_tmpdir.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/tst_tmpdir.c b/lib/tst_tmpdir.c
index b73b5c66f..bcc788390 100644
--- a/lib/tst_tmpdir.c
+++ b/lib/tst_tmpdir.c
@@ -92,7 +92,7 @@ 
  * Define global variables.
  */
 extern char *TCID;		/* defined/initialized in main() */
-static char *TESTDIR = NULL;	/* the directory created */
+static char *TESTDIR;	/* the directory created */
 
 static char test_start_work_dir[PATH_MAX];