提交 e3888186 编写于 作者: B bellard

BSD getopt fix


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1103 c046a42c-6fe2-441c-8c8c-71466251a162
上级 02d2c54c
......@@ -333,7 +333,6 @@ static int img_create(int argc, char **argv)
break;
}
}
optind++;
if (optind >= argc)
help();
filename = argv[optind++];
......@@ -403,7 +402,6 @@ static int img_commit(int argc, char **argv)
break;
}
}
optind++;
if (optind >= argc)
help();
filename = argv[optind++];
......@@ -511,7 +509,6 @@ static int img_convert(int argc, char **argv)
break;
}
}
optind++;
if (optind >= argc)
help();
filename = argv[optind++];
......@@ -639,7 +636,6 @@ static int img_info(int argc, char **argv)
break;
}
}
optind++;
if (optind >= argc)
help();
filename = argv[optind++];
......@@ -686,6 +682,7 @@ int main(int argc, char **argv)
if (argc < 2)
help();
cmd = argv[1];
optind++;
if (!strcmp(cmd, "create")) {
img_create(argc, argv);
} else if (!strcmp(cmd, "commit")) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册