From: FreeBirdLjj Date: Sun, 28 Sep 2014 12:37:36 +0000 (+0800) Subject: Replace ((void*)0) with NULL. X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;ds=sidebyside;h=fc7c1dab34261fe195f2f4186c39a5686ca6ab53;p=smdp.git Replace ((void*)0) with NULL. --- diff --git a/src/cstack.c b/src/cstack.c index 0043b5c..a5ecc06 100644 --- a/src/cstack.c +++ b/src/cstack.c @@ -25,7 +25,7 @@ cstack_t *cstack_init() { cstack_t *stack = malloc(sizeof(cstack_t)); - stack->content = (void*)0; + stack->content = NULL; stack->alloc = stack->size = 0; stack->head = -1; stack->push = cstack_push; diff --git a/src/cstring.c b/src/cstring.c index 59c549c..6d16d2b 100644 --- a/src/cstring.c +++ b/src/cstring.c @@ -26,7 +26,7 @@ cstring_t *cstring_init() { cstring_t *x = malloc(sizeof(cstring_t)); - x->text = (void*)0; + x->text = NULL; x->size = x->alloc = 0; x->expand = cstring_expand; x->expand_arr = cstring_expand_arr; @@ -57,7 +57,7 @@ void cstring_expand_arr(cstring_t *self, char *x) { void cstring_reset(cstring_t *self) { free(self->text); - self->text = (void*)0; + self->text = NULL; self->size = self->alloc = 0; }