Fix string literal warning

This commit is contained in:
Kevin Lange 2011-12-03 00:34:07 -06:00
parent 29e3645b84
commit 843ffa271a

View File

@ -1018,7 +1018,7 @@ try_again:
last = frames[i][y][x]; last = frames[i][y][x];
printf("%s%s", colors[frames[i][y][x]], output); printf("%s%s", colors[frames[i][y][x]], output);
} else { } else {
printf(output); printf("%s", output);
} }
} }
} }