diff options
author | Kevin Lange <k@dakko.us> | 2011-12-03 00:34:07 -0600 |
---|---|---|
committer | Kevin Lange <k@dakko.us> | 2011-12-03 00:34:07 -0600 |
commit | 843ffa271ad2556fd0e08627e61f96e95bf6116b (patch) | |
tree | 4eb753244347b80ee601dbee988a8e0a4042358f /src/nyancat.c | |
parent | 29e3645b84f6c82fa05cb8c4d88f1a3d8c894ca4 (diff) | |
download | nyancat-843ffa271ad2556fd0e08627e61f96e95bf6116b.tar.gz |
Fix string literal warning
Diffstat (limited to '')
-rw-r--r-- | src/nyancat.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } } |