mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
Fix warning.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5210 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
796134ffbd
commit
9cc7ea504c
@ -32,7 +32,7 @@
|
|||||||
/* Add new nick to list */
|
/* Add new nick to list */
|
||||||
NICK_REC *irc_nicklist_insert(IRC_CHANNEL_REC *channel, const char *nick,
|
NICK_REC *irc_nicklist_insert(IRC_CHANNEL_REC *channel, const char *nick,
|
||||||
int op, int halfop, int voice, int send_massjoin,
|
int op, int halfop, int voice, int send_massjoin,
|
||||||
char *prefixes)
|
const char *prefixes)
|
||||||
{
|
{
|
||||||
NICK_REC *rec;
|
NICK_REC *rec;
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
/* Add new nick to list */
|
/* Add new nick to list */
|
||||||
NICK_REC *irc_nicklist_insert(IRC_CHANNEL_REC *channel, const char *nick,
|
NICK_REC *irc_nicklist_insert(IRC_CHANNEL_REC *channel, const char *nick,
|
||||||
int op, int halfop, int voice, int send_massjoin,
|
int op, int halfop, int voice, int send_massjoin,
|
||||||
char *prefixes);
|
const char *prefixes);
|
||||||
|
|
||||||
/* Remove all "extra" characters from `nick'. Like _nick_ -> nick */
|
/* Remove all "extra" characters from `nick'. Like _nick_ -> nick */
|
||||||
char *irc_nick_strip(const char *nick);
|
char *irc_nick_strip(const char *nick);
|
||||||
|
Loading…
Reference in New Issue
Block a user