From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37546) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUJ48-0000Z0-Ks for qemu-devel@nongnu.org; Tue, 15 May 2012 10:49:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SUJ46-0002wr-5D for qemu-devel@nongnu.org; Tue, 15 May 2012 10:49:32 -0400 Received: from mail-gg0-f173.google.com ([209.85.161.173]:40714) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUJ45-0002wf-VZ for qemu-devel@nongnu.org; Tue, 15 May 2012 10:49:30 -0400 Received: by ggnp1 with SMTP id p1so5535142ggn.4 for ; Tue, 15 May 2012 07:49:28 -0700 (PDT) Sender: fluxion From: Michael Roth Date: Tue, 15 May 2012 09:48:48 -0500 Message-Id: <1337093339-10786-3-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1337093339-10786-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1337093339-10786-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 02/13] qemu-ga: don't warn on no command return List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mprivozn@redhat.com, aliguori@us.ibm.com, eblake@redhat.com, jcody@redhat.com, lcapitulino@redhat.com From: Luiz Capitulino This is a valid condition when a command chooses to not emit a success response. Signed-off-by: Luiz Capitulino Signed-off-by: Michael Roth --- qemu-ga.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/qemu-ga.c b/qemu-ga.c index 680997e..cf61cb9 100644 --- a/qemu-ga.c +++ b/qemu-ga.c @@ -488,8 +488,6 @@ static void process_command(GAState *s, QDict *req) g_warning("error sending response: %s", strerror(ret)); } qobject_decref(rsp); - } else { - g_warning("error getting response"); } } -- 1.7.4.1