From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44423) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsBI5-00017B-8a for qemu-devel@nongnu.org; Fri, 30 Oct 2015 11:08:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZsBI2-0003Cd-2N for qemu-devel@nongnu.org; Fri, 30 Oct 2015 11:08:29 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39794) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsBI1-0003CY-UN for qemu-devel@nongnu.org; Fri, 30 Oct 2015 11:08:26 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 88D7EC0B83E9 for ; Fri, 30 Oct 2015 15:08:25 +0000 (UTC) From: Eduardo Habkost Date: Fri, 30 Oct 2015 13:07:57 -0200 Message-Id: <1446217682-24421-7-git-send-email-ehabkost@redhat.com> In-Reply-To: <1446217682-24421-1-git-send-email-ehabkost@redhat.com> References: <1446217682-24421-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH v3 06/11] vl.c: Use 'quotes' instead of `quotes' in messages List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Andrew Jones , Markus Armbruster Suggested-by: Eric Blake Signed-off-by: Eduardo Habkost --- vl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vl.c b/vl.c index 44f9f54..5c7c91f 100644 --- a/vl.c +++ b/vl.c @@ -965,7 +965,7 @@ static struct bt_device_s *bt_device_add(const char *opt) if (!strcmp(devname, "keyboard")) return bt_keyboard_init(vlan); - error_report("unsupported bluetooth device `%s'", devname); + error_report("unsupported bluetooth device '%s'", devname); return 0; } @@ -4578,7 +4578,7 @@ int main(int argc, char **argv, char **envp) vnc_init_func, NULL, NULL); if (show_vnc_port) { char *ret = vnc_display_local_addr("default"); - printf("VNC server running on `%s'\n", ret); + printf("VNC server running on '%s'\n", ret); g_free(ret); } #endif -- 2.1.0