summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIIMarckus <iimarckus@gmail.com>2017-06-29 22:14:12 -0600
committerIIMarckus <iimarckus@gmail.com>2017-06-29 22:14:12 -0600
commit2ebbe91fe8fe87587e688bae49732d82a2f1f8b5 (patch)
tree779edb3eb72c6f531f1ed5efd7cf3e065f03d216
parent8e87d5abc45972c3683209d78e45b397f963ae42 (diff)
Fix uninitialized value.
-rw-r--r--tools/palette.c2
1 files changed, 1 insertions, 1 deletions
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) {