Fix string literal warning

This commit is contained in:
Kevin Lange 2011-12-03 00:34:07 -06:00
parent 29e3645b84
commit 843ffa271a
1 changed files with 1 additions and 1 deletions

View File

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