]> git.proxmox.com Git - mirror_qemu.git/blobdiff - vl.c
vl: Remove useless test in configure_accelerators
[mirror_qemu.git] / vl.c
diff --git a/vl.c b/vl.c
index 94c9301e7fa2cd7ccc171ffa9408047759c9c9dd..1e5e9b9aeba1b51442d478a17ef7207c4871b1ed 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -2783,7 +2783,7 @@ static void configure_accelerators(const char *progname)
 
         accel_list = g_strsplit(accel, ":", 0);
 
-        for (tmp = accel_list; tmp && *tmp; tmp++) {
+        for (tmp = accel_list; *tmp; tmp++) {
             /*
              * Filter invalid accelerators here, to prevent obscenities
              * such as "-machine accel=tcg,,thread=single".