Skip to content

Commit

Permalink
fix: correct va function def
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloliverx committed Nov 8, 2024
1 parent e50442a commit 726fc5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/xenon/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ void SV_ClientThinkHook(client_t *cl, usercmd_s *cmd)
}
else
{
char msg = va("Invalid command time %i from client %s, current server time is %i", cmd->serverTime, cl->name, svsHeader->time);
Com_PrintError(CON_CHANNEL_SERVER, &msg);
char *msg = va("Invalid command time %i from client %s, current server time is %i", cmd->serverTime, cl->name, svsHeader->time);
Com_PrintError(CON_CHANNEL_SERVER, msg);
}
}

Expand Down

0 comments on commit 726fc5b

Please sign in to comment.