From c07c163e0e8cd89ab916774064f26a756eee08e9 Mon Sep 17 00:00:00 2001 From: Jeff Cody Date: Mon, 12 Mar 2012 14:13:57 -0400 Subject: [PATCH] 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 Acked-by: Luiz Capitulino Signed-off-by: Stefan Hajnoczi --- monitor.c | 1 - 1 file changed, 1 deletion(-) diff --git a/monitor.c b/monitor.c index d57e7bf61d..e71a141dd1 100644 --- a/monitor.c +++ b/monitor.c @@ -128,7 +128,6 @@ typedef struct mon_cmd_t { int (*cmd_async)(Monitor *mon, const QDict *params, MonitorCompletion *cb, void *opaque); } mhandler; - bool qapi; int flags; } mon_cmd_t;