mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
Fix for unnecessary compiler warnings.
This commit is contained in:
2
library/stdlib_calloc.c
Normal file → Executable file
2
library/stdlib_calloc.c
Normal file → Executable file
@ -48,7 +48,7 @@
|
||||
/****************************************************************************/
|
||||
|
||||
__static void *
|
||||
__calloc(size_t num_elements, size_t element_size, const char * file, int line)
|
||||
__calloc(size_t num_elements, size_t element_size, const char * file UNUSED, int line UNUSED)
|
||||
{
|
||||
void * result = NULL;
|
||||
size_t total_size;
|
||||
|
||||
Reference in New Issue
Block a user