Revision 72cf2d4f qemu-config.c

b/qemu-config.c
4 4

  
5 5
QemuOptsList qemu_drive_opts = {
6 6
    .name = "drive",
7
    .head = TAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
7
    .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
8 8
    .desc = {
9 9
        {
10 10
            .name = "bus",
......
77 77

  
78 78
QemuOptsList qemu_chardev_opts = {
79 79
    .name = "chardev",
80
    .head = TAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
80
    .head = QTAILQ_HEAD_INITIALIZER(qemu_chardev_opts.head),
81 81
    .desc = {
82 82
        {
83 83
            .name = "backend",
......
140 140

  
141 141
QemuOptsList qemu_device_opts = {
142 142
    .name = "device",
143
    .head = TAILQ_HEAD_INITIALIZER(qemu_device_opts.head),
143
    .head = QTAILQ_HEAD_INITIALIZER(qemu_device_opts.head),
144 144
    .desc = {
145 145
        /*
146 146
         * no elements => accept any

Also available in: Unified diff