mirror of https://github.com/xemu-project/xemu.git
Fix repeated typo: was "end if list" instead of "end of list"
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
e301b13d6a
commit
26056e0c75
|
@ -80,7 +80,7 @@ static QemuOptsList qemu_drive_opts = {
|
||||||
.name = "readonly",
|
.name = "readonly",
|
||||||
.type = QEMU_OPT_BOOL,
|
.type = QEMU_OPT_BOOL,
|
||||||
},
|
},
|
||||||
{ /* end if list */ }
|
{ /* end of list */ }
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -147,7 +147,7 @@ static QemuOptsList qemu_chardev_opts = {
|
||||||
.name = "signal",
|
.name = "signal",
|
||||||
.type = QEMU_OPT_BOOL,
|
.type = QEMU_OPT_BOOL,
|
||||||
},
|
},
|
||||||
{ /* end if list */ }
|
{ /* end of list */ }
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -203,7 +203,7 @@ static QemuOptsList qemu_device_opts = {
|
||||||
* sanity checking will happen later
|
* sanity checking will happen later
|
||||||
* when setting device properties
|
* when setting device properties
|
||||||
*/
|
*/
|
||||||
{ /* end if list */ }
|
{ /* end of list */ }
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -247,7 +247,7 @@ static QemuOptsList qemu_rtc_opts = {
|
||||||
.name = "driftfix",
|
.name = "driftfix",
|
||||||
.type = QEMU_OPT_STRING,
|
.type = QEMU_OPT_STRING,
|
||||||
},
|
},
|
||||||
{ /* end if list */ }
|
{ /* end of list */ }
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -265,7 +265,7 @@ static QemuOptsList qemu_global_opts = {
|
||||||
.name = "value",
|
.name = "value",
|
||||||
.type = QEMU_OPT_STRING,
|
.type = QEMU_OPT_STRING,
|
||||||
},
|
},
|
||||||
{ /* end if list */ }
|
{ /* end of list */ }
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -284,7 +284,7 @@ static QemuOptsList qemu_mon_opts = {
|
||||||
.name = "default",
|
.name = "default",
|
||||||
.type = QEMU_OPT_BOOL,
|
.type = QEMU_OPT_BOOL,
|
||||||
},
|
},
|
||||||
{ /* end if list */ }
|
{ /* end of list */ }
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue