diff options
author | michael-grunder <michael.grunder@gmail.com> | 2021-10-10 11:58:19 -0700 |
---|---|---|
committer | michael-grunder <michael.grunder@gmail.com> | 2021-10-10 11:58:19 -0700 |
commit | fa900ef76fbdc9f2bcec0d2cd507000dce9d8d03 (patch) | |
tree | d6fa5e32a7802103aab7b60f5c39a22fb1ab25f5 /test.c | |
parent | e489846b7226958718ae91fa0c4999b420c706e2 (diff) |
Fix unused variable warning.
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; } |