All of lore.kernel.org
 help / color / mirror / Atom feed
From: Cole Robinson <crobinso@redhat.com>
To: qemu-devel@nongnu.org
Cc: Cole Robinson <crobinso@redhat.com>,
	Gerd Hoffmann <kraxel@redhat.com>,
	Markus Armbruster <armbru@redhat.com>,
	Anthony Liguori <aliguori@amazon.com>,
	Luiz Capitulino <lcapitulino@redhat.com>
Subject: [Qemu-devel] [PATCH 2/6] vnc: Remove default_mon usage
Date: Tue, 11 Mar 2014 19:15:18 -0400	[thread overview]
Message-ID: <8da868ef9a5c4a3954ff803cd8913ddb035eb3a8.1394579440.git.crobinso@redhat.com> (raw)
In-Reply-To: <cover.1394579440.git.crobinso@redhat.com>
In-Reply-To: <cover.1394579440.git.crobinso@redhat.com>

These errors don't seem user initiated, so forcibly printing to the
monitor doesn't seem right. Just print to stderr.

Cc: Anthony Liguori <aliguori@amazon.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Cole Robinson <crobinso@redhat.com>
---
 ui/vnc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/vnc.c b/ui/vnc.c
index 9c84b3e..3c9b6c7 100644
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -992,7 +992,7 @@ static void audio_add(VncState *vs)
     struct audio_capture_ops ops;
 
     if (vs->audio_cap) {
-        monitor_printf(default_mon, "audio already running\n");
+        fprintf(stderr, "audio already running\n");
         return;
     }
 
@@ -1002,7 +1002,7 @@ static void audio_add(VncState *vs)
 
     vs->audio_cap = AUD_add_capture(&vs->as, &ops, vs);
     if (!vs->audio_cap) {
-        monitor_printf(default_mon, "Failed to add audio capture\n");
+        fprintf(stderr, "Failed to add audio capture\n");
     }
 }
 
-- 
1.8.5.3

  parent reply	other threads:[~2014-03-11 23:16 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-11 23:15 [Qemu-devel] [PATCH 0/6] error: Misc cleanups and improvements Cole Robinson
2014-03-11 23:15 ` [Qemu-devel] [PATCH 1/6] slirp: Remove default_mon usage Cole Robinson
2014-03-12  7:22   ` Jan Kiszka
2014-03-12 13:06     ` Luiz Capitulino
2014-03-22 18:27     ` Andreas Färber
2014-03-22 21:36       ` Cole Robinson
2014-03-12  8:13   ` Markus Armbruster
2014-03-12 13:22     ` Cole Robinson
2014-03-12 14:45       ` Markus Armbruster
2014-03-11 23:15 ` Cole Robinson [this message]
2014-03-12  7:35   ` [Qemu-devel] [PATCH 2/6] vnc: " Gerd Hoffmann
2014-03-22 20:14     ` Andreas Färber
2014-03-11 23:15 ` [Qemu-devel] [PATCH 3/6] error: Privatize error_print_loc Cole Robinson
2014-03-22 20:04   ` Andreas Färber
2014-03-11 23:15 ` [Qemu-devel] [PATCH 4/6] monitor: Remove unused monitor_print_filename Cole Robinson
2014-03-22 20:06   ` Andreas Färber
2014-03-22 21:44     ` Cole Robinson
2014-03-24 13:09     ` Luiz Capitulino
2014-03-24 13:46       ` Andreas Färber
2014-03-26 13:46         ` Markus Armbruster
2014-03-11 23:15 ` [Qemu-devel] [PATCH 5/6] error: Remove redundant error_printf_unless_qmp Cole Robinson
2014-03-12  8:56   ` Markus Armbruster
2014-03-21 23:41     ` Cole Robinson
2014-03-11 23:15 ` [Qemu-devel] [PATCH 6/6] error: Print error_report() to stderr if using qmp Cole Robinson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8da868ef9a5c4a3954ff803cd8913ddb035eb3a8.1394579440.git.crobinso@redhat.com \
    --to=crobinso@redhat.com \
    --cc=aliguori@amazon.com \
    --cc=armbru@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=lcapitulino@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.