From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:40814) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QeoPF-0001G3-9Q for qemu-devel@nongnu.org; Thu, 07 Jul 2011 09:14:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QeoPC-00064Y-UY for qemu-devel@nongnu.org; Thu, 07 Jul 2011 09:14:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:13228) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QeoPC-00064F-EQ for qemu-devel@nongnu.org; Thu, 07 Jul 2011 09:14:10 -0400 From: Amit Shah Date: Thu, 7 Jul 2011 18:43:51 +0530 Message-Id: <2790fc8865477dcd23e8cc64c55b088b5c6092ca.1310044223.git.amit.shah@redhat.com> In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [PATCH 3/3] virtio-serial-bus: Fix trailing \n in error_report string List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Amit Shah , qemu list Markus fixed offenders in the file but one instance sneaked in via another patch. Fix it. Signed-off-by: Amit Shah --- hw/virtio-serial-bus.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/virtio-serial-bus.c b/hw/virtio-serial-bus.c index 9859f9f..6d73386 100644 --- a/hw/virtio-serial-bus.c +++ b/hw/virtio-serial-bus.c @@ -351,7 +351,7 @@ static void handle_control_message(VirtIOSerial *vser, void *buf, size_t len) port = find_port_by_id(vser, ldl_p(&gcpkt->id)); if (!port) { - error_report("virtio-serial-bus: Unexpected port id %u for device %s\n", + error_report("virtio-serial-bus: Unexpected port id %u for device %s", ldl_p(&gcpkt->id), vser->bus.qbus.name); return; } -- 1.7.5.4