mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
Fix linux warning to make GCC compiler happy
This commit is contained in:
parent
31f5fdfa97
commit
f23bda76a3
@ -144,7 +144,7 @@ void UTIL_IntToString(int value, char *output);
|
|||||||
void UTIL_ShowMOTD(edict_t *client, char *motd, int mlen, const char *name);
|
void UTIL_ShowMOTD(edict_t *client, char *motd, int mlen, const char *name);
|
||||||
void UTIL_ShowMenu(edict_t* pEntity, int slots, int time, char *menu, int mlen);
|
void UTIL_ShowMenu(edict_t* pEntity, int slots, int time, char *menu, int mlen);
|
||||||
void UTIL_ClientSayText(edict_t *pEntity, int sender, char *msg);
|
void UTIL_ClientSayText(edict_t *pEntity, int sender, char *msg);
|
||||||
void UTIL_TeamInfo(edict_t *pEntity, int playerIndex, char *pszTeamName);
|
void UTIL_TeamInfo(edict_t *pEntity, int playerIndex, const char *pszTeamName);
|
||||||
|
|
||||||
char *UTIL_VarArgs(const char *fmt, ...);
|
char *UTIL_VarArgs(const char *fmt, ...);
|
||||||
|
|
||||||
|
@ -309,7 +309,7 @@ void UTIL_ClientSayText(edict_t *pEntity, int sender, char *msg)
|
|||||||
msg[190] = c;
|
msg[190] = c;
|
||||||
}
|
}
|
||||||
|
|
||||||
void UTIL_TeamInfo(edict_t *pEntity, int playerIndex, char *pszTeamName)
|
void UTIL_TeamInfo(edict_t *pEntity, int playerIndex, const char *pszTeamName)
|
||||||
{
|
{
|
||||||
if (!gmsgTeamInfo)
|
if (!gmsgTeamInfo)
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user