diff playtreeparser.c @ 18869:682a16136d6c

rm unnecesary void* casts - part 1
author reynaldo
date Sat, 01 Jul 2006 03:56:13 +0000
parents 1a14fde7680d
children cc65a585fdcc
line wrap: on
line diff
--- a/playtreeparser.c	Fri Jun 30 20:05:28 2006 +0000
+++ b/playtreeparser.c	Sat Jul 01 03:56:13 2006 +0000
@@ -53,7 +53,7 @@
   int r,resize = 0;
 
   if(p->buffer == NULL) {
-    p->buffer = (char*)malloc(BUF_STEP);
+    p->buffer = malloc(BUF_STEP);
     p->buffer_size = BUF_STEP;
     p->iter = p->buffer;
   }