From 4f45df22937edd8b06dfb62a934b2d0272f6b49a Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 11 Aug 2025 20:50:03 +0500 Subject: [PATCH] engine: imagelib: add missing argument name, so it compilers with old C standards compliant compilers --- engine/common/imagelib/img_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/common/imagelib/img_main.c b/engine/common/imagelib/img_main.c index 99ba077c..49e74ff2 100644 --- a/engine/common/imagelib/img_main.c +++ b/engine/common/imagelib/img_main.c @@ -119,9 +119,9 @@ static void Image_IncrementLookupTime( void ) g_lookup_start = Sys_DoubleTime(); } #else -static void Image_ReportLookupsCount( const char * ) +static void Image_ReportLookupsCount( const char *name ) { - + (void)name; } static void Image_IncrementLookupTime( void ) {