From patchwork Mon Nov 17 17:08:16 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 411751 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 165A61400F1 for ; Tue, 18 Nov 2014 04:13:54 +1100 (AEDT) Received: from localhost ([::1]:49201 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XqPs8-0004d8-4T for incoming@patchwork.ozlabs.org; Mon, 17 Nov 2014 12:13:52 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39172) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XqPnF-0003qi-AI for qemu-devel@nongnu.org; Mon, 17 Nov 2014 12:08:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XqPn9-00069v-Tn for qemu-devel@nongnu.org; Mon, 17 Nov 2014 12:08:49 -0500 Received: from mail-wi0-x229.google.com ([2a00:1450:400c:c05::229]:58001) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XqPn9-00069n-Nl for qemu-devel@nongnu.org; Mon, 17 Nov 2014 12:08:43 -0500 Received: by mail-wi0-f169.google.com with SMTP id r20so3125492wiv.2 for ; Mon, 17 Nov 2014 09:08:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=A6NP+sDYKbDGcNKKVGJlkDg9nJ6p1bxd9xXc6CyYDTg=; b=YP+EAP5yQHp+2lKrSgGFceDJK90OEow6GRH01ihu7PB5/GkkRJiimM48FYOz67Ei+j pWorLOF/CBnjpCeHznSCATYyP4CIwFOyBhvdl6qPjWtK3npKjxjNWp0KcWf/dr3phaTl tIEfJL1+LWoGy9TcGilGIBaLC/bxcf75AhezyoLsvFA2AV8p8cyOTO5JAdY+lPE0Ye7Z Q6aht+2shjlXtXfzD+q8Z52WxJkirlFAIgYtov4IPgqsQ2M/lI3vb6WLIKbYJtWiKnZG oy0qqYC/5czrWo/faVtF9m55MWpn/YSdBTa2KlVk9W+B5QCEz6+Sj8HpL+a0bfuXPTbd aAKA== X-Received: by 10.180.99.105 with SMTP id ep9mr6729629wib.26.1416244123159; Mon, 17 Nov 2014 09:08:43 -0800 (PST) Received: from playground.station (net-37-117-142-149.cust.vodafonedsl.it. [37.117.142.149]) by mx.google.com with ESMTPSA id fm10sm21789207wjc.43.2014.11.17.09.08.41 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 17 Nov 2014 09:08:42 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Mon, 17 Nov 2014 18:08:16 +0100 Message-Id: <1416244099-7217-10-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1416244099-7217-1-git-send-email-pbonzini@redhat.com> References: <1416244099-7217-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::229 Cc: Gonglei Subject: [Qemu-devel] [PULL 09/12] qemu-char: fix MISSING_COMMA X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Gonglei Signed-off-by: Gonglei Signed-off-by: Paolo Bonzini --- qemu-char.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-char.c b/qemu-char.c index bd0709b..4a76f0f 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -464,7 +464,7 @@ static const char * const mux_help[] = { "% h print this help\n\r", "% x exit emulator\n\r", "% s save disk data back to file (if -snapshot)\n\r", - "% t toggle console timestamps\n\r" + "% t toggle console timestamps\n\r", "% b send break (magic sysrq)\n\r", "% c switch between console and monitor\n\r", "% % sends %\n\r",