Remove return in void function

This commit is contained in:
Tatsuhiro Tsujikawa 2015-01-09 20:56:37 +09:00
parent 19101f7f4a
commit b2411d949e
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ void *nghttp2_mem_malloc(nghttp2_mem *mem, size_t size) {
} }
void nghttp2_mem_free(nghttp2_mem *mem, void *ptr) { void nghttp2_mem_free(nghttp2_mem *mem, void *ptr) {
return mem->free(ptr, mem->mem_user_data); mem->free(ptr, mem->mem_user_data);
} }
void *nghttp2_mem_calloc(nghttp2_mem *mem, size_t nmemb, size_t size) { void *nghttp2_mem_calloc(nghttp2_mem *mem, size_t nmemb, size_t size) {