Selaa lähdekoodia

remove return with expression in void function

Michael Forney 4 vuotta sitten
vanhempi
sitoutus
d8cb888db9
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/malloc/free.c

+ 1 - 1
src/malloc/free.c

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