diff options
author | Peter Crosthwaite <peter.crosthwaite@xilinx.com> | 2012-12-04 16:04:34 +1000 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2012-12-18 16:49:51 +0100 |
commit | ec9ea4890cd06de1648cbbfb99fcb63e01f4000f (patch) | |
tree | 00e830324fb38ef2ae57a2cb26a0d76ff53c440e /hw/pflash_cfi02.c | |
parent | d96fc51cc6defcd80bdf932823dadd88be532a0b (diff) |
pflash_cfi0x: Send debug messages to stderr
These debug info messages should go to stderr rather than stdout.
Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw/pflash_cfi02.c')
-rw-r--r-- | hw/pflash_cfi02.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/pflash_cfi02.c b/hw/pflash_cfi02.c index f918e36580..c60ae831b4 100644 --- a/hw/pflash_cfi02.c +++ b/hw/pflash_cfi02.c @@ -45,9 +45,9 @@ //#define PFLASH_DEBUG #ifdef PFLASH_DEBUG -#define DPRINTF(fmt, ...) \ -do { \ - printf("PFLASH: " fmt , ## __VA_ARGS__); \ +#define DPRINTF(fmt, ...) \ +do { \ + fprintf(stderr "PFLASH: " fmt , ## __VA_ARGS__); \ } while (0) #else #define DPRINTF(fmt, ...) do { } while (0) |