summaryrefslogtreecommitdiffstats
path: root/playtreeparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'playtreeparser.c')
-rw-r--r--playtreeparser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/playtreeparser.c b/playtreeparser.c
index 3984ea25e9..50a2b3ffbe 100644
--- a/playtreeparser.c
+++ b/playtreeparser.c
@@ -694,7 +694,7 @@ play_tree_parser_t*
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;