Skip to content

Commit

Permalink
fix gcc compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ec- committed Dec 23, 2024
1 parent 0d48d97 commit d523bb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/qcommon/files.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d523bb4

Please sign in to comment.