Browse Source

engine: server: static-ize sv_query functions

pull/2/head
Alibek Omarov 1 year ago
parent
commit
0809453b2c
  1. 6
      engine/server/sv_query.c

6
engine/server/sv_query.c

@ -32,7 +32,7 @@ GNU General Public License for more details. @@ -32,7 +32,7 @@ GNU General Public License for more details.
SV_SourceQuery_Details
==================
*/
void SV_SourceQuery_Details( netadr_t from )
static void SV_SourceQuery_Details( netadr_t from )
{
sizebuf_t buf;
char answer[2048];
@ -80,7 +80,7 @@ void SV_SourceQuery_Details( netadr_t from ) @@ -80,7 +80,7 @@ void SV_SourceQuery_Details( netadr_t from )
SV_SourceQuery_Rules
==================
*/
void SV_SourceQuery_Rules( netadr_t from )
static void SV_SourceQuery_Rules( netadr_t from )
{
sizebuf_t buf;
char answer[1024 * 8];
@ -121,7 +121,7 @@ void SV_SourceQuery_Rules( netadr_t from ) @@ -121,7 +121,7 @@ void SV_SourceQuery_Rules( netadr_t from )
SV_SourceQuery_Players
==================
*/
void SV_SourceQuery_Players( netadr_t from )
static void SV_SourceQuery_Players( netadr_t from )
{
sizebuf_t buf;
char answer[1024 * 8];

Loading…
Cancel
Save