mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
gcc5: test-tool: Initialize local variable.
gcc 5 cannot prove that the variable is always initialized and therefore prints a warning.
This commit is contained in:
@@ -93,7 +93,7 @@ main (int argc, char *argv[])
|
||||
char **pp;
|
||||
guestfs_h *g;
|
||||
char *qemu = NULL;
|
||||
int qemu_use_wrapper;
|
||||
int qemu_use_wrapper = 0;
|
||||
|
||||
for (;;) {
|
||||
c = getopt_long (argc, argv, options, long_options, &option_index);
|
||||
|
||||
Reference in New Issue
Block a user