From 843ffa271ad2556fd0e08627e61f96e95bf6116b Mon Sep 17 00:00:00 2001 From: Kevin Lange Date: Sat, 3 Dec 2011 00:34:07 -0600 Subject: Fix string literal warning --- src/nyancat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nyancat.c b/src/nyancat.c index b681451..7065a31 100644 --- a/src/nyancat.c +++ b/src/nyancat.c @@ -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); } } } -- cgit v1.2.3