aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKevin Lange <k@dakko.us>2011-12-03 00:34:07 -0600
committerKevin Lange <k@dakko.us>2011-12-03 00:34:07 -0600
commit843ffa271ad2556fd0e08627e61f96e95bf6116b (patch)
tree4eb753244347b80ee601dbee988a8e0a4042358f /src
parent29e3645b84f6c82fa05cb8c4d88f1a3d8c894ca4 (diff)
downloadnyancat-843ffa271ad2556fd0e08627e61f96e95bf6116b.tar.gz
Fix string literal warning
Diffstat (limited to 'src')
-rw-r--r--src/nyancat.c2
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);
}
}
}