fixes to remove warnings from gcc-4.0.0

This commit is contained in:
Josh Coalson
2005-08-24 07:39:25 +00:00
parent d263e6eec0
commit b4de1692f3
5 changed files with 11 additions and 11 deletions

View File

@@ -225,7 +225,7 @@ void write_vc_field(const char *filename, const FLAC__StreamMetadata_VorbisComme
*/
char *converted;
if(utf8_decode(entry->entry, &converted) >= 0) {
if(utf8_decode((const char *)entry->entry, &converted) >= 0) {
(void) local_fwrite(converted, 1, strlen(converted), f);
free(converted);
}