intel/aubinator: Use int to store getopt_long flags.

getopt_long flag parameter is an int pointer, so if we use bool to store
those values, when getopt_long writes to one of them, it might end up
overwriting the next one.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Rafael Antognolli 2018-06-12 12:18:19 -07:00
parent f8e2c4c57c
commit 9e1f208795
1 changed files with 2 additions and 2 deletions

View File

@ -56,8 +56,8 @@
/* options */
static bool option_full_decode = true;
static bool option_print_offsets = true;
static int option_full_decode = true;
static int option_print_offsets = true;
static int max_vbo_lines = -1;
static enum { COLOR_AUTO, COLOR_ALWAYS, COLOR_NEVER } option_color;