summaryrefslogtreecommitdiffstats
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
parent29e3645b84f6c82fa05cb8c4d88f1a3d8c894ca4 (diff)
downloadnyancat-843ffa271ad2556fd0e08627e61f96e95bf6116b.tar.gz
Fix string literal warning
-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);
}
}
}
' href='#n139'>139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198