]> Git Repo - qemu.git/blobdiff - include/qemu/option_int.h
Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2020-12-21' into...
[qemu.git] / include / qemu / option_int.h
index 8212fa4a485855cd8c71fed189a5214c27b571dd..5dd9a5162db9e89d2c15885dd4d0bff3c7e28e4e 100644 (file)
  * THE SOFTWARE.
  */
 
-#ifndef QEMU_OPTIONS_INTERNAL_H
-#define QEMU_OPTIONS_INTERNAL_H
+#ifndef QEMU_OPTION_INT_H
+#define QEMU_OPTION_INT_H
 
 #include "qemu/option.h"
 #include "qemu/error-report.h"
 
 struct QemuOpt {
-    const char   *name;
-    const char   *str;
+    char *name;
+    char *str;
 
     const QemuOptDesc *desc;
     union {
@@ -47,7 +47,7 @@ struct QemuOpts {
     char *id;
     QemuOptsList *list;
     Location loc;
-    QTAILQ_HEAD(QemuOptHead, QemuOpt) head;
+    QTAILQ_HEAD(, QemuOpt) head;
     QTAILQ_ENTRY(QemuOpts) next;
 };
 
This page took 0.025609 seconds and 4 git commands to generate.