summaryrefslogtreecommitdiff
path: root/block-raw.c
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-11 11:43:27 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-11 11:43:27 +0000
commitae5fc4507e39d35904cea8ee2b311959c8747c71 (patch)
tree8f4729752227d81da00ade4d52ab9a535f910be5 /block-raw.c
parent3f379ab18741e75325cfca22f368de846d8b89f1 (diff)
downloadqemu-ae5fc4507e39d35904cea8ee2b311959c8747c71.tar.gz
block-raw/kqemu fix.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3580 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'block-raw.c')
-rw-r--r--block-raw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block-raw.c b/block-raw.c
index 8286681573..71c39ab08b 100644
--- a/block-raw.c
+++ b/block-raw.c
@@ -25,6 +25,7 @@
#include "qemu-common.h"
#else
#include "vl.h"
+#include "exec-all.h"
#endif
#include "block_int.h"
#include <assert.h>
@@ -61,7 +62,6 @@
//#define DEBUG_BLOCK
#if defined(DEBUG_BLOCK) && !defined(QEMU_IMG)
-#include "exec-all.h"
#define DEBUG_BLOCK_PRINT(formatCstr, args...) do { if (loglevel != 0) \
{ fprintf(logfile, formatCstr, ##args); fflush(logfile); } } while (0)
#else