Browse Source

remove return with expression in void function

Michael Forney 4 years ago
parent
commit
d8cb888db9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/malloc/free.c

+ 1 - 1
src/malloc/free.c

@@ -2,5 +2,5 @@
 
 
 void free(void *p)
 void free(void *p)
 {
 {
-	return __libc_free(p);
+	__libc_free(p);
 }
 }