From d523bb4dab21085a2fe00bbc67fc80bd5b8d3e99 Mon Sep 17 00:00:00 2001 From: Eugene Date: Mon, 23 Dec 2024 15:07:16 +0200 Subject: [PATCH] fix gcc compiler warnings --- code/qcommon/files.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/qcommon/files.c b/code/qcommon/files.c index 0ee2e5f6e..eea858b10 100644 --- a/code/qcommon/files.c +++ b/code/qcommon/files.c @@ -3889,9 +3889,9 @@ static int FS_PathCmp( const char *s1, const char *s2 ) { FS_SortFileList ================ */ -static void FS_SortFileList( const char **list, int n ) { +static void FS_SortFileList( char **list, int n ) { const char *m; - const char *temp; + char *temp; int i, j; i = 0; j = n;