diff options
author | Laszlo Ersek | 2012-07-17 16:17:12 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2012-07-23 12:55:18 +0200 |
commit | 2be64a68ed05c65fc510dc450a1eb1823edf9330 (patch) | |
tree | 80f7813ad4f48bb146c4482401be30625d95833e /net/dump.c | |
parent | qapi schema: add Netdev types (diff) | |
download | qemu-2be64a68ed05c65fc510dc450a1eb1823edf9330.tar.gz qemu-2be64a68ed05c65fc510dc450a1eb1823edf9330.tar.xz qemu-2be64a68ed05c65fc510dc450a1eb1823edf9330.zip |
hw, net: "net_client_type" -> "NetClientOptionsKind" (qapi-generated)
NET_CLIENT_TYPE_ -> NET_CLIENT_OPTIONS_KIND_
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'net/dump.c')
-rw-r--r-- | net/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dump.c b/net/dump.c index f835c51187..2124b9a081 100644 --- a/net/dump.c +++ b/net/dump.c @@ -93,7 +93,7 @@ static void dump_cleanup(VLANClientState *nc) } static NetClientInfo net_dump_info = { - .type = NET_CLIENT_TYPE_DUMP, + .type = NET_CLIENT_OPTIONS_KIND_DUMP, .size = sizeof(DumpState), .receive = dump_receive, .cleanup = dump_cleanup, |