From c69ca05dbe5cb62b500b547a5953ab08a5a63b8c Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Sat, 14 Jun 2008 17:48:31 -0700 Subject: [PATCH] Kill a "cannot pass objects of non-POD type 'class TagLib::FileName' through '...'; call will abort at runtime" warning/error on Windows. --- modules/meta_engine/taglib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/meta_engine/taglib.cpp b/modules/meta_engine/taglib.cpp index 49b78c2508..67e54dd7e3 100644 --- a/modules/meta_engine/taglib.cpp +++ b/modules/meta_engine/taglib.cpp @@ -136,7 +136,7 @@ static void DetectImage( FileRef f, demux_t *p_demux ) msg_Warn( p_demux, "%s: Invalid picture embedded by broken iTunes version, " "you really shouldn't use this crappy software.", - f.file()->name() ); + (const char *)f.file()->name() ); break; } -- 2.39.2