Signed-off-by: Maninder Singh <maninder...@samsung.com>
Signed-off-by: Akhilesh Kumar <akhiles...@samsung.com>
---
 pan/symbol.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pan/symbol.c b/pan/symbol.c
index ca9964a..3752114 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);
        }
-- 
1.7.9.5
------------------------------------------------------------------------------
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to