1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 04:46:17 +00:00

const'ify Client_TypeText()

This commit is contained in:
Alexander Barton 2010-06-26 00:31:08 +02:00
parent 8ad1c23ae4
commit a68103771c
2 changed files with 2 additions and 2 deletions

View File

@ -1104,7 +1104,7 @@ Client_RegisterWhowas( CLIENT *Client )
} /* Client_RegisterWhowas */
GLOBAL char *
GLOBAL const char *
Client_TypeText(CLIENT *Client)
{
assert(Client != NULL);

View File

@ -146,7 +146,7 @@ GLOBAL int Client_GetLastWhowasIndex PARAMS(( void ));
GLOBAL void Client_RegisterWhowas PARAMS(( CLIENT *Client ));
GLOBAL char * Client_TypeText PARAMS((CLIENT *Client));
GLOBAL const char *Client_TypeText PARAMS((CLIENT *Client));
#endif