diff playtreeparser.c @ 18879:cc65a585fdcc

rm unnecesary casts from void* - part 3
author reynaldo
date Sun, 02 Jul 2006 08:17:07 +0000
parents 682a16136d6c
children a95ed361d16b
line wrap: on
line diff
--- a/playtreeparser.c	Sun Jul 02 03:59:36 2006 +0000
+++ b/playtreeparser.c	Sun Jul 02 08:17:07 2006 +0000
@@ -694,7 +694,7 @@
 play_tree_parser_new(stream_t* stream,int deep) {
   play_tree_parser_t* p;
 
-  p = (play_tree_parser_t*)calloc(1,sizeof(play_tree_parser_t));
+  p = calloc(1,sizeof(play_tree_parser_t));
   if(!p)
     return NULL;
   p->stream = stream;