[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2] block/vvfat.c: remove debugging code to reinit s
From: |
Michael Tokarev |
Subject: |
[Qemu-devel] [PATCH v2] block/vvfat.c: remove debugging code to reinit stderr if NULL |
Date: |
Wed, 20 Aug 2014 19:02:38 +0400 |
Just log to stderr unconditionally, like other similar code does.
Signed-off-by: Michael Tokarev <address@hidden>
Reviewed-by: Peter Maydell <address@hidden>
---
block/vvfat.c | 9 ---------
1 file changed, 9 deletions(-)
v2: also remove stderr redefinition
diff --git a/block/vvfat.c b/block/vvfat.c
index 70176b1..1c270b2 100644
--- a/block/vvfat.c
+++ b/block/vvfat.c
@@ -52,10 +52,6 @@
#define DLOG(a) a
-#undef stderr
-#define stderr STDERR
-FILE* stderr = NULL;
-
static void checkpoint(void);
#ifdef __MINGW32__
@@ -1082,11 +1078,6 @@ static int vvfat_open(BlockDriverState *bs, QDict
*options, int flags,
vvv = s;
#endif
-DLOG(if (stderr == NULL) {
- stderr = fopen("vvfat.log", "a");
- setbuf(stderr, NULL);
-})
-
opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
qemu_opts_absorb_qdict(opts, options, &local_err);
if (local_err) {
--
1.7.10.4
- [Qemu-devel] [PATCH v2] block/vvfat.c: remove debugging code to reinit stderr if NULL,
Michael Tokarev <=