From patchwork Sat Jan 26 20:54:36 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [4/4] qemu/log.h: Fix missing includes Date: Sat, 26 Jan 2013 10:54:36 -0000 From: Peter Crosthwaite X-Patchwork-Id: 215938 Message-Id: <79b3ee1c-5db5-47e7-a458-39e5c0698e3f@VA3EHSMHS027.ehs.local> To: Cc: qemu-trivial@nongnu.org, Peter Crosthwaite qemu/log.h needs a few bits and pieces from qemu-common to compile. Fixes the case where qemu/log.h is the first files included. Signed-off-by: Peter Crosthwaite --- include/qemu/log.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/qemu/log.h b/include/qemu/log.h index 58f69cb..0a1266d 100644 --- a/include/qemu/log.h +++ b/include/qemu/log.h @@ -2,6 +2,7 @@ #define QEMU_LOG_H #include +#include "qemu-common.h" #ifdef NEED_CPU_H #include "disas/disas.h" #endif