From d46489c4ee72182d36e147054c1aebad50c77089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Z=C3=BA=C3=B1iga?= Date: Thu, 1 Jun 2017 11:34:35 -0400 Subject: [PATCH] test-runner: Always define qemu_table Otherwise build fails in architectures with no qemu name defined. --- tools/test-runner.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/test-runner.c b/tools/test-runner.c index d32547f8..b3ea5f65 100644 --- a/tools/test-runner.c +++ b/tools/test-runner.c @@ -100,6 +100,7 @@ static const char * const qemu_table[] = { }; #else #warning Qemu binary name not defined for this architecture yet +static const char * const qemu_table[] = { NULL }; #endif struct wiphy {