diff --git a/c-programming/experiments/static-vs-dynamic-mem-alloc.c b/c-programming/experiments/static-vs-dynamic-mem-alloc.c index bb7c6e9..3c83620 100644 --- a/c-programming/experiments/static-vs-dynamic-mem-alloc.c +++ b/c-programming/experiments/static-vs-dynamic-mem-alloc.c @@ -19,6 +19,7 @@ void dynamic_memory_allocation(uint8_t** mem); long double measure(void (*function)(uint8_t**), long double* c); void empty(uint8_t** mem) { + (void) mem; return; }