From patchwork Mon Apr 18 15:02:20 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [RFC,v2,04/17] qapi: fix function name typo in qmp-gen.py From: Michael Roth X-Patchwork-Id: 91774 Message-Id: <1303138953-1334-5-git-send-email-mdroth@linux.vnet.ibm.com> To: qemu-devel@nongnu.org Cc: aliguori@linux.vnet.ibm.com, agl@linux.vnet.ibm.com, mdroth@linux.vnet.ibm.com, Jes.Sorensen@redhat.com Date: Mon, 18 Apr 2011 10:02:20 -0500 Signed-off-by: Michael Roth --- qmp-gen.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qmp-gen.py b/qmp-gen.py index 90069ca..4164692 100644 --- a/qmp-gen.py +++ b/qmp-gen.py @@ -2328,7 +2328,7 @@ void qga_init_marshal(void) if not s.has_key('command'): continue name = s['command'] - if qmp_is_proxy_command(name): + if qmp_is_proxy_cmd(name): ret += mcgen(''' qga_register_command("%(name)s", &qmp_marshal_%(c_name)s); ''',