diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-15 22:35:09 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-15 22:35:09 +0000 |
commit | 31b1a7b4f5f87a239ee62feb8ba5bd00d6e26744 (patch) | |
tree | fa87e3bc2207ec1d753d7c9a1ee966611c8c18a6 /block-raw-posix.c | |
parent | 93fcfe39a0383377e647b821c9f165fd927cd4e0 (diff) |
global s/fflush(logfile)/qemu_log_flush()/ (Eduardo Habkost)
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6339 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'block-raw-posix.c')
-rw-r--r-- | block-raw-posix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block-raw-posix.c b/block-raw-posix.c index 5b13f6b237..f00ef423af 100644 --- a/block-raw-posix.c +++ b/block-raw-posix.c @@ -68,7 +68,7 @@ //#define DEBUG_BLOCK #if defined(DEBUG_BLOCK) #define DEBUG_BLOCK_PRINT(formatCstr, args...) do { if (qemu_log_enabled()) \ - { qemu_log(formatCstr, ##args); fflush(logfile); } } while (0) + { qemu_log(formatCstr, ##args); qemu_log_flush(); } } while (0) #else #define DEBUG_BLOCK_PRINT(formatCstr, args...) #endif |