diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-22 15:27:24 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 12:29:05 -0500 |
commit | dc57a474d8afb0ca7055f373dd08182fce585e88 (patch) | |
tree | f88d4e325afbb59145ad1cd79407e1bba9a0b52e | |
parent | 6a4c7edab1f8848c4561bfde358c48263eefad53 (diff) | |
download | qemu-dc57a474d8afb0ca7055f373dd08182fce585e88.tar.gz qemu-dc57a474d8afb0ca7055f373dd08182fce585e88.tar.bz2 qemu-dc57a474d8afb0ca7055f373dd08182fce585e88.zip |
Fix signature of new_vlan_client
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | net.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -73,7 +73,8 @@ struct VLANState { VLANState *qemu_find_vlan(int id, int allocate); VLANClientState *qemu_find_netdev(const char *id); -VLANClientState *qemu_new_vlan_client(VLANState *vlan, +VLANClientState *qemu_new_vlan_client(net_client_type type,, + VLANState *vlan, VLANClientState *peer, const char *model, const char *name, |