fix uninitialized value

This commit is contained in:
id101010
2019-08-03 19:23:49 +02:00
parent fc3e3d9cae
commit 26d7cce021

View File

@@ -58,7 +58,7 @@ char *colortheme[] = {
// Colorize instructions // Colorize instructions
char *colorize(char c) char *colorize(char c)
{ {
char *cs; // colorstring char *cs = 0; // colorstring
switch(c) { switch(c) {
case '>': case '>':