File pointer-types.patch of Package tremulous
diff -Nraub a/src/qcommon/common.c b/src/qcommon/common.c
--- a/src/qcommon/common.c 2025-10-15 08:15:22.169132904 -0400
+++ b/src/qcommon/common.c 2025-10-15 08:18:58.661015835 -0400
@@ -3545,7 +3545,7 @@
if( nameCount <= 0 )
return;
- Name_PlayerNameCompletion( names, nameCount, FindMatches );
+ Name_PlayerNameCompletion( (const char **)names, nameCount, FindMatches );
if( completionString[0] == '\0' )
{
@@ -3579,7 +3579,7 @@
{
Com_Printf( "]%s\n", completionField->buffer );
- Name_PlayerNameCompletion( names, nameCount, PrintMatches );
+ Name_PlayerNameCompletion( (const char **)names, nameCount, PrintMatches );
}
whitespace = nameCount == 1? qtrue: qfalse;