From 67a3fbb5c76c6bf2c415032f5ebc68124e06ea37 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Tue, 15 Sep 2020 10:56:03 +0200 Subject: [PATCH] Fixed test_video_display() Pass empty string instead of NULL. --- test/test_video_display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_video_display.c b/test/test_video_display.c index f8b0ae3af..d4cdfd168 100644 --- a/test/test_video_display.c +++ b/test/test_video_display.c @@ -49,7 +49,7 @@ int test_video_display(void) printf ("Testing video hardware detection ......................................... "); - if (initialize_video_display(NULL, "none", NULL, 0, NULL, &d) != 0) { + if (initialize_video_display(NULL, "none", "", 0, NULL, &d) != 0) { printf("FAIL\n"); printf(" Cannot intiialize dummy device\n"); return 1;