mirror of https://github.com/xemu-project/xemu.git
monitor: Remove unused bool field 'qapi' in mon_cmd_t struct
Some minor code cleanup: the 'qapi' bool field in mon_cmd_t is unused, and can be removed. Signed-off-by: Jeff Cody <jcody@redhat.com> Acked-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
fbac6a7d35
commit
c07c163e0e
|
@ -128,7 +128,6 @@ typedef struct mon_cmd_t {
|
||||||
int (*cmd_async)(Monitor *mon, const QDict *params,
|
int (*cmd_async)(Monitor *mon, const QDict *params,
|
||||||
MonitorCompletion *cb, void *opaque);
|
MonitorCompletion *cb, void *opaque);
|
||||||
} mhandler;
|
} mhandler;
|
||||||
bool qapi;
|
|
||||||
int flags;
|
int flags;
|
||||||
} mon_cmd_t;
|
} mon_cmd_t;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue