9f7ad964d1
Cantus is an easy to use tool for tagging and renaming MP3 and OGG/Vorbis files. It has many features including mass tagging and renaming of MP3s, the ability to generate a tag out of the filename, filter definitions for renaming, recursive actions, CDDB (Freedb) lookup (no CD needed), copy between ID3V1 and ID3V2 tags, and a lot more. WWW: http://www.debain.org/software/cantus/ PR: ports/66799 Submitted by: Sergey Akifyev <asa@gascom.ru>
11 lines
359 B
C
11 lines
359 B
C
--- src/libs/lib_charset.c.orig Tue May 18 14:25:50 2004
|
|
+++ src/libs/lib_charset.c Tue May 18 14:25:59 2004
|
|
@@ -207,7 +207,7 @@
|
|
outptr = out;
|
|
|
|
retry:
|
|
- if (iconv(cd, (char**)&input, &length, &outptr, &outleft) == -1) {
|
|
+ if (iconv(cd, (const char**)&input, &length, &outptr, &outleft) == -1) {
|
|
int used;
|
|
switch (errno) {
|
|
case E2BIG:
|