aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pan/symbol.c4
1 files changed, 2 insertions, 2 deletions
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);
}