From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37991) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoLlW-00024L-Bj for qemu-devel@nongnu.org; Tue, 11 Nov 2014 19:26:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XoLlL-0008T3-EB for qemu-devel@nongnu.org; Tue, 11 Nov 2014 19:26:30 -0500 Received: from mail-ob0-f170.google.com ([209.85.214.170]:32847) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoLlL-0008SE-A5 for qemu-devel@nongnu.org; Tue, 11 Nov 2014 19:26:19 -0500 Received: by mail-ob0-f170.google.com with SMTP id nt9so9124690obb.1 for ; Tue, 11 Nov 2014 16:26:19 -0800 (PST) From: Greg Bellows Date: Tue, 11 Nov 2014 18:25:51 -0600 Message-Id: <1415751963-4081-4-git-send-email-greg.bellows@linaro.org> In-Reply-To: <1415751963-4081-1-git-send-email-greg.bellows@linaro.org> References: <1415751963-4081-1-git-send-email-greg.bellows@linaro.org> Subject: [Qemu-devel] [PATCH v1 03/15] android-console: Remove extra redir help message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, peter.maydell@linaro.org, christoffer.dall@linaro.org, alex.bennee@linaro.org Cc: Greg Bellows Removed an extraneous message in the redir command help. The message is not part of the standard Android emulator output. Signed-off-by: Greg Bellows --- android-console.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/android-console.c b/android-console.c index be573b5..2de4a0c 100644 --- a/android-console.c +++ b/android-console.c @@ -270,8 +270,6 @@ void android_console_redir(Monitor *mon, const QDict *qdict) /* This only gets called for bad subcommands and help requests */ const char *helptext = qdict_get_try_str(qdict, "helptext"); - monitor_printf(mon, "help text %s\n", helptext ? helptext : "(null)"); - if (helptext) { if (strstr(helptext, "add")) { monitor_printf(mon, "%s", redir_add_help); -- 1.8.3.2