mirror of https://github.com/xqemu/xqemu.git
qemu-io: add 'const'
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
be45f06826
commit
b32bb95264
|
@ -1415,7 +1415,7 @@ int main(int argc, char **argv)
|
||||||
int readonly = 0;
|
int readonly = 0;
|
||||||
int growable = 0;
|
int growable = 0;
|
||||||
const char *sopt = "hVc:Crsnmgk";
|
const char *sopt = "hVc:Crsnmgk";
|
||||||
struct option lopt[] = {
|
const struct option lopt[] = {
|
||||||
{ "help", 0, NULL, 'h' },
|
{ "help", 0, NULL, 'h' },
|
||||||
{ "version", 0, NULL, 'V' },
|
{ "version", 0, NULL, 'V' },
|
||||||
{ "offset", 1, NULL, 'o' },
|
{ "offset", 1, NULL, 'o' },
|
||||||
|
|
Loading…
Reference in New Issue