Commit fa900ef7 authored by michael-grunder's avatar michael-grunder
Browse files

Fix unused variable warning.

parent e489846b
......@@ -768,6 +768,8 @@ static void *hi_calloc_fail(size_t nmemb, size_t size) {
}
static void *hi_calloc_insecure(size_t nmemb, size_t size) {
(void)nmemb;
(void)size;
insecure_calloc_calls++;
return (void*)0xdeadc0de;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment