diff mbox series

[PULL,37/40] vl: Simplify call of parse_name()

Message ID 20181022123413.28044-38-armbru@redhat.com (mailing list archive)
State New, archived
Headers show
Series [PULL,01/40] scripts: Remove check-qerror.sh | expand

Commit Message

Markus Armbruster Oct. 22, 2018, 12:34 p.m. UTC
main() checks for parse_name() failure even though it can't actually
fail.  That's okay.  Simplify it to check by passing &error_fatal,
like the other users of qemu_opts_foreach().

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20181017082702.5581-36-armbru@redhat.com>
---
 vl.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/vl.c b/vl.c
index 812ceba425..d53e2563e9 100644
--- a/vl.c
+++ b/vl.c
@@ -3974,10 +3974,8 @@  int main(int argc, char **argv, char **envp)
     }
 #endif
 
-    if (qemu_opts_foreach(qemu_find_opts("name"),
-                          parse_name, NULL, NULL)) {
-        exit(1);
-    }
+    qemu_opts_foreach(qemu_find_opts("name"),
+                      parse_name, NULL, &error_fatal);
 
 #ifndef _WIN32
     qemu_opts_foreach(qemu_find_opts("add-fd"),