diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-04-12 13:20:40 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-06-04 13:49:35 -0300 |
commit | 42dcc547e1982f31d0f678e02f0aae5be570384a (patch) | |
tree | 79b4c258f03b57ea509d5a111848ea9f3ec0bb98 /net/dump.h | |
parent | 60d5666f7d4eec6df4a3d066769009f0c1a685bf (diff) | |
download | qemu-42dcc547e1982f31d0f678e02f0aae5be570384a.tar.gz qemu-42dcc547e1982f31d0f678e02f0aae5be570384a.tar.bz2 qemu-42dcc547e1982f31d0f678e02f0aae5be570384a.zip |
net: purge the monitor object from all init functions
The only backend that really uses it is the socket one, which calls
monitor_get_fd(). But it can use 'cur_mon' instead.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-By: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'net/dump.h')
-rw-r--r-- | net/dump.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/dump.h b/net/dump.h index fdc91ad6dc..2b5d9ba644 100644 --- a/net/dump.h +++ b/net/dump.h @@ -27,7 +27,6 @@ #include "net.h" #include "qemu-common.h" -int net_init_dump(QemuOpts *opts, Monitor *mon, - const char *name, VLANState *vlan); +int net_init_dump(QemuOpts *opts, const char *name, VLANState *vlan); #endif /* QEMU_NET_DUMP_H */ |