fix function listCreate comment in adlist.c

This commit is contained in:
q191201771 2020-01-04 11:31:04 +08:00
parent 0af467d18f
commit 9dba47c377
1 changed files with 1 additions and 5 deletions

View File

@ -33,11 +33,7 @@
#include "adlist.h"
#include "zmalloc.h"
/* Create a new list. The created list can be freed with
* AlFreeList(), but private value of every node need to be freed
* by the user before to call AlFreeList().
*
* On error, NULL is returned. Otherwise the pointer to the new list. */
/* On error, NULL is returned. Otherwise the pointer to the new list. */
list *listCreate(void)
{
struct list *list;