Fix for unnecessary compiler warnings.

This commit is contained in:
obarthel
2023-09-10 11:14:32 +02:00
parent 7207c96a6f
commit 5efacb1a2b
Regular → Executable
+1 -1
View 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;