diff options
Diffstat (limited to 'qemu-option.h')
-rw-r--r-- | qemu-option.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-option.h b/qemu-option.h index 9e52625cc0..6b968a5728 100644 --- a/qemu-option.h +++ b/qemu-option.h @@ -26,7 +26,7 @@ #ifndef QEMU_OPTIONS_H #define QEMU_OPTIONS_H -#include "sys-queue.h" +#include "qemu-queue.h" enum QEMUOptionParType { OPT_FLAG, @@ -95,7 +95,7 @@ typedef struct QemuOptDesc { struct QemuOptsList { const char *name; - TAILQ_HEAD(, QemuOpts) head; + QTAILQ_HEAD(, QemuOpts) head; QemuOptDesc desc[]; }; |