From 2ebbe91fe8fe87587e688bae49732d82a2f1f8b5 Mon Sep 17 00:00:00 2001 From: IIMarckus Date: Thu, 29 Jun 2017 22:14:12 -0600 Subject: [PATCH] Fix uninitialized value. --- tools/palette.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/palette.c b/tools/palette.c index 39837a096..ebb8e4fbf 100644 --- a/tools/palette.c +++ b/tools/palette.c @@ -65,7 +65,7 @@ void print_palette(char* palette_filename) { int main(int argc, char* argv[]) { int ch; - bool pokemon; + bool pokemon = false; while ((ch = getopt(argc, argv, "p")) != -1) { switch (ch) {