mirror of
https://gitee.com/openharmony/third_party_nghttp2
synced 2024-11-26 17:40:25 +00:00
Remove return in void function
This commit is contained in:
parent
19101f7f4a
commit
b2411d949e
@ -49,7 +49,7 @@ void *nghttp2_mem_malloc(nghttp2_mem *mem, size_t size) {
|
||||
}
|
||||
|
||||
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) {
|
||||
|
Loading…
Reference in New Issue
Block a user