remove return with expression in void function
[musl] / src / malloc / free.c
index f17a952..3944f7b 100644 (file)
@@ -2,5 +2,5 @@
 
 void free(void *p)
 {
-       return __libc_free(p);
+       __libc_free(p);
 }