fix pci net hot-remove (Marcelo Tosatti)

Missing brackets, doh.

Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6645 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
aliguori 2009-02-26 16:40:31 +00:00
parent 7a11b22eab
commit 9a40611cd4
1 changed files with 2 additions and 1 deletions

View File

@ -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)