[MPlayer-cvslog] r19114 - trunk/libaf/format.c

reynaldo subversion at mplayerhq.hu
Sun Jul 16 03:24:42 CEST 2006


Author: reynaldo
Date: Sun Jul 16 03:24:42 2006
New Revision: 19114

Modified:
   trunk/libaf/format.c

Log:
Removes an unneeded cast. Patch by Stefan Huehner, stefan AT.. huehner.org

Modified: trunk/libaf/format.c
==============================================================================
--- trunk/libaf/format.c	(original)
+++ trunk/libaf/format.c	Sun Jul 16 03:24:42 2006
@@ -184,7 +184,7 @@
 
     for (i = 0; af_fmtstr_table[i].name; i++)
 	if (af_fmtstr_table[i].format == format)
-	    return (char*)(af_fmtstr_table[i].name);
+	    return af_fmtstr_table[i].name;
 
     return "??";
 }



More information about the MPlayer-cvslog mailing list