mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
Fix Sparse warnings: "Using plain integer as NULL pointer"
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
2e29bd0478
commit
660f11be54
20 changed files with 59 additions and 58 deletions
22
qemu-io.c
22
qemu-io.c
|
|
@ -1414,17 +1414,17 @@ int main(int argc, char **argv)
|
|||
int growable = 0;
|
||||
const char *sopt = "hVc:Crsnmg";
|
||||
struct option lopt[] = {
|
||||
{ "help", 0, 0, 'h' },
|
||||
{ "version", 0, 0, 'V' },
|
||||
{ "offset", 1, 0, 'o' },
|
||||
{ "cmd", 1, 0, 'c' },
|
||||
{ "create", 0, 0, 'C' },
|
||||
{ "read-only", 0, 0, 'r' },
|
||||
{ "snapshot", 0, 0, 's' },
|
||||
{ "nocache", 0, 0, 'n' },
|
||||
{ "misalign", 0, 0, 'm' },
|
||||
{ "growable", 0, 0, 'g' },
|
||||
{ NULL, 0, 0, 0 }
|
||||
{ "help", 0, NULL, 'h' },
|
||||
{ "version", 0, NULL, 'V' },
|
||||
{ "offset", 1, NULL, 'o' },
|
||||
{ "cmd", 1, NULL, 'c' },
|
||||
{ "create", 0, NULL, 'C' },
|
||||
{ "read-only", 0, NULL, 'r' },
|
||||
{ "snapshot", 0, NULL, 's' },
|
||||
{ "nocache", 0, NULL, 'n' },
|
||||
{ "misalign", 0, NULL, 'm' },
|
||||
{ "growable", 0, NULL, 'g' },
|
||||
{ NULL, 0, NULL, 0 }
|
||||
};
|
||||
int c;
|
||||
int opt_index = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue