Browse Source

cueprint: use the correct type format string

master
Dmitry Smirnov 10 years ago
parent
commit
521b7552de
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/tools/cueprint.c

+ 1
- 1
src/tools/cueprint.c 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);
}



Loading…
Cancel
Save