]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qemu-option.h
Fix spelling in comment
[mirror_qemu.git] / qemu-option.h
index 9e52625cc055d6510a58b192980b6f14355776f6..525b9b6f066195c21441aa7a9b317429ab69b8d9 100644 (file)
@@ -26,7 +26,8 @@
 #ifndef QEMU_OPTIONS_H
 #define QEMU_OPTIONS_H
 
-#include "sys-queue.h"
+#include <stdint.h>
+#include "qemu-queue.h"
 
 enum QEMUOptionParType {
     OPT_FLAG,
@@ -95,7 +96,7 @@ typedef struct QemuOptDesc {
 
 struct QemuOptsList {
     const char *name;
-    TAILQ_HEAD(, QemuOpts) head;
+    QTAILQ_HEAD(, QemuOpts) head;
     QemuOptDesc desc[];
 };