diff options
Diffstat (limited to 'hmp.c')
| -rw-r--r-- | hmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hmp.c b/hmp.c index bd7b1caf2b..c7f161d634 100644 --- a/hmp.c +++ b/hmp.c @@ -2108,7 +2108,7 @@ void hmp_nbd_server_start(Monitor *mon, const QDict *qdict) bool all = qdict_get_try_bool(qdict, "all", false); Error *local_err = NULL; BlockInfoList *block_list, *info; - SocketAddress *addr; + SocketAddressLegacy *addr; if (writable && !all) { error_setg(&local_err, "-w only valid together with -a"); @@ -2122,7 +2122,7 @@ void hmp_nbd_server_start(Monitor *mon, const QDict *qdict) } qmp_nbd_server_start(addr, false, NULL, &local_err); - qapi_free_SocketAddress(addr); + qapi_free_SocketAddressLegacy(addr); if (local_err != NULL) { goto exit; } |