소스 검색

remove return with expression in void function

Michael Forney 4 년 전
부모
커밋
d8cb888db9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);
 }