diff options
| author | Jan Kiszka | 2010-01-18 12:15:01 +0100 |
|---|---|---|
| committer | Aurelien Jarno | 2010-02-28 11:50:25 +0100 |
| commit | 5bb599023a6478e86152a2e8bc2b21775261b9da (patch) | |
| tree | d51821b2bcb1688ff160649d8f93681fe1aa7421 | |
| parent | powerpc/e500: adjust fdt and ramdisk loading addr (diff) | |
| download | qemu-5bb599023a6478e86152a2e8bc2b21775261b9da.tar.gz qemu-5bb599023a6478e86152a2e8bc2b21775261b9da.tar.xz qemu-5bb599023a6478e86152a2e8bc2b21775261b9da.zip | |
qemu-char.c: drop debug printfs from qemu_chr_parse_compat
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
| -rw-r--r-- | qemu-char.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/qemu-char.c b/qemu-char.c index 4169492213..86c7c5a3f5 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -2334,7 +2334,6 @@ QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename) if (sscanf(p, "%64[^:]:%32[^@,]%n", host, port, &pos) < 2) { host[0] = 0; if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) { - fprintf(stderr, "udp #1\n"); goto fail; } } @@ -2345,7 +2344,6 @@ QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename) if (sscanf(p, "%64[^:]:%32[^,]%n", host, port, &pos) < 2) { host[0] = 0; if (sscanf(p, ":%32[^,]%n", port, &pos) < 1) { - fprintf(stderr, "udp #2\n"); goto fail; } } @@ -2373,7 +2371,6 @@ QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename) } fail: - fprintf(stderr, "%s: fail on \"%s\"\n", __FUNCTION__, filename); qemu_opts_del(opts); return NULL; } |
