0 -> NULL

FossilOrigin-Name: 934301b76982c5e627e27e6af843d21af328dc915d7c93c2f3c20502c42137a5
This commit is contained in:
7u83@mail.ru 2015-05-01 16:57:02 +00:00
parent 4423c1d79e
commit 0c1c1594ac

View File

@ -12,7 +12,7 @@ struct mavl *mavl_create(int (*cmp) (const void *, const void *),
struct mavl *t = malloc(sizeof(struct mavl));
if (!t)
return NULL;
t->root = 0;
t->root = NULL;
t->count = 0;
t->cmp = cmp;
t->del = del;