changeset 19109:6e840952870d

Removes an unneeded cast. Patch by Stefan Huehner, stefan AT.. huehner.org
author reynaldo
date Sun, 16 Jul 2006 01:24:42 +0000
parents 5e767cabf4cd
children 08888397444e
files libaf/format.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libaf/format.c	Sun Jul 16 01:20:30 2006 +0000
+++ b/libaf/format.c	Sun Jul 16 01:24:42 2006 +0000
@@ -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 "??";
 }