ref: 2ebbe91fe8fe87587e688bae49732d82a2f1f8b5
parent: 8e87d5abc45972c3683209d78e45b397f963ae42
author: IIMarckus <iimarckus@gmail.com>
date: Thu Jun 29 18:14:12 EDT 2017
Fix uninitialized value.
--- a/tools/palette.c
+++ b/tools/palette.c
@@ -65,7 +65,7 @@
int main(int argc, char* argv[]) {
int ch;
- bool pokemon;
+ bool pokemon = false;
while ((ch = getopt(argc, argv, "p")) != -1) {
switch (ch) {