From 34333488a1122b0ebea644cb29e2cb33f7db9a56 Mon Sep 17 00:00:00 2001 From: Maninder Singh Date: Mon, 15 Jun 2015 13:25:07 +0000 Subject: pan/symbol.c: remove unnecessary malloc type cast Signed-off-by: Maninder Singh Signed-off-by: Akhilesh Kumar --- pan/symbol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pan') diff --git a/pan/symbol.c b/pan/symbol.c index ca9964ab2..37521143e 100644 --- a/pan/symbol.c +++ b/pan/symbol.c @@ -86,7 +86,7 @@ SYM newsym(void) { SYM h; - if ((h = (SYM) malloc(sizeof(struct symh))) == NULL) { + if ((h = malloc(sizeof(struct symh))) == NULL) { sym_error = "sym header malloc failed!"; return (NULL); } @@ -101,7 +101,7 @@ static struct sym *mknode(struct sym *next, char *key, void *data) { struct sym *n; - if ((n = (struct sym *)malloc(sizeof(struct sym))) == NULL) { + if ((n = malloc(sizeof(struct sym))) == NULL) { sym_error = "sym node malloc failed!"; return (NULL); } -- cgit v1.2.3