aboutsummaryrefslogtreecommitdiff
path: root/softmmu
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2022-10-21 11:09:07 +0200
committerJason Wang <jasowang@redhat.com>2022-10-28 13:28:52 +0800
commitd63ef17bfcba1126df6bfcb7bca64c96ac4a8d99 (patch)
tree5e84e81b619740690bc691f76daa7caa34859070 /softmmu
parent30e4226b78f888a75dade5a2cf1488f94da3a8db (diff)
downloadqemu-d63ef17bfcba1126df6bfcb7bca64c96ac4a8d99.zip
qemu-d63ef17bfcba1126df6bfcb7bca64c96ac4a8d99.tar.gz
qemu-d63ef17bfcba1126df6bfcb7bca64c96ac4a8d99.tar.bz2
net: remove the @errp argument of net_client_inits()
The only caller passes &error_fatal, so use this directly in the function. It's what we do for -blockdev, -device, and -object. Suggested-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'softmmu')
-rw-r--r--softmmu/vl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/softmmu/vl.c b/softmmu/vl.c
index b464da2..a4ae131 100644
--- a/softmmu/vl.c
+++ b/softmmu/vl.c
@@ -1904,7 +1904,7 @@ static void qemu_create_late_backends(void)
qtest_server_init(qtest_chrdev, qtest_log, &error_fatal);
}
- net_init_clients(&error_fatal);
+ net_init_clients();
object_option_foreach_add(object_create_late);