cueprint: use the correct type format string

This commit is contained in:
Dmitry Smirnov
2013-07-05 15:21:39 +10:00
parent efd39b282e
commit 521b7552de

View File

@@ -264,7 +264,7 @@ void print_conv(char *start, int length, Cd *cd, int trackno)
printf(conv, value.sval);
break;
default:
printf("%d: ", strlen(conv));
printf("%zu: ", strlen(conv));
printf("%s", conv);
}