From patchwork Mon Mar 12 18:13:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: monitor: Remove unused bool field 'qapi' in mon_cmd_t struct Date: Mon, 12 Mar 2012 08:13:57 -0000 From: Jeff Cody X-Patchwork-Id: 146192 Message-Id: <14fd588cffd843789d6b6a4379f42ac1b2a6fbbf.1331575674.git.jcody@redhat.com> To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, lcapitulino@redhat.com 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 --- monitor.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/monitor.c b/monitor.c index a787aab..34272eb 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;