Commit ae5fc4507e39d35904cea8ee2b311959c8747c71
1 parent
3f379ab1
block-raw/kqemu fix.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3580 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
block-raw.c
| ... | ... | @@ -25,6 +25,7 @@ |
| 25 | 25 | #include "qemu-common.h" |
| 26 | 26 | #else |
| 27 | 27 | #include "vl.h" |
| 28 | +#include "exec-all.h" | |
| 28 | 29 | #endif |
| 29 | 30 | #include "block_int.h" |
| 30 | 31 | #include <assert.h> |
| ... | ... | @@ -61,7 +62,6 @@ |
| 61 | 62 | |
| 62 | 63 | //#define DEBUG_BLOCK |
| 63 | 64 | #if defined(DEBUG_BLOCK) && !defined(QEMU_IMG) |
| 64 | -#include "exec-all.h" | |
| 65 | 65 | #define DEBUG_BLOCK_PRINT(formatCstr, args...) do { if (loglevel != 0) \ |
| 66 | 66 | { fprintf(logfile, formatCstr, ##args); fflush(logfile); } } while (0) |
| 67 | 67 | #else | ... | ... |