aboutsummaryrefslogtreecommitdiffstats
path: root/src/nmt/image.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nmt/image.c')
-rw-r--r--src/nmt/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nmt/image.c b/src/nmt/image.c
index e31167c..15d933f 100644
--- a/src/nmt/image.c
+++ b/src/nmt/image.c
@@ -35,7 +35,7 @@ void print_image(void)
int i, j;
for (i = 0; image[i]; i++) {
- for (j = 0; j < strlen(image[i]); j++) {
+ for (j = 0; j < (int)strlen(image[i]); j++) {
if (image[i][j] == '@') {
j++;
switch(image[i][j]) {