X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=ll.c;h=4d1ea4a71f63d054b217bb791be00bdc3f3efc95;hb=394938c479925750ffe56c28d281945ba4003a14;hp=5936bf60d5665f444237561d6b612205a22c7dc0;hpb=e01d2e2d07392eb03e4268fdc4f0f1339a9a9461;p=onak.git diff --git a/ll.c b/ll.c index 5936bf6..4d1ea4a 100644 --- a/ll.c +++ b/ll.c @@ -91,8 +91,7 @@ unsigned long llsize(struct ll *curll) * objectfree then it's called for each element to free them, if it's NULL * just the list is freed. */ -struct ll *llfree(struct ll *curll, - void (*objectfree) (void *object)) +void llfree(struct ll *curll, void (*objectfree) (void *object)) { struct ll *nextll; @@ -105,5 +104,5 @@ struct ll *llfree(struct ll *curll, free(curll); curll = nextll; } - return NULL; + return; }