aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
Diffstat (limited to 'hw')
-rw-r--r--hw/device-hotplug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/device-hotplug.c b/hw/device-hotplug.c
index e58ecd6dfa..3bdc048c68 100644
--- a/hw/device-hotplug.c
+++ b/hw/device-hotplug.c
@@ -51,7 +51,7 @@ void destroy_nic(dev_match_fn *match_fn, void *arg)
int i;
NICInfo *nic;
- for (i = 0; i < MAX_NICS; i++)
+ for (i = 0; i < MAX_NICS; i++) {
nic = &nd_table[i];
if (nic->used) {
if (nic->private && match_fn(nic->private, arg)) {
@@ -64,6 +64,7 @@ void destroy_nic(dev_match_fn *match_fn, void *arg)
net_client_uninit(nic);
}
}
+ }
}
void destroy_bdrvs(dev_match_fn *match_fn, void *arg)