1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

Remove unused variables to silence compiler warnings

This commit is contained in:
David Leadbeater 2014-06-26 00:47:49 +01:00
parent 86fcadb85d
commit b34ded063b
2 changed files with 1 additions and 3 deletions

View File

@ -211,7 +211,6 @@ void window_item_next(WINDOW_REC *window)
WI_ITEM_REC *window_item_find_window(WINDOW_REC *window,
void *server, const char *name)
{
CHANNEL_REC *channel;
GSList *tmp;
for (tmp = window->items; tmp != NULL; tmp = tmp->next) {

View File

@ -115,7 +115,6 @@ static void sig_session_restore_nick(IRC_CHANNEL_REC *channel,
{
const char *nick, *prefixes;
int op, halfop, voice;
NICK_REC *nickrec;
char newprefixes[MAX_USER_PREFIXES + 1];
int i;
@ -145,7 +144,7 @@ static void sig_session_restore_nick(IRC_CHANNEL_REC *channel,
newprefixes[i] = '\0';
prefixes = newprefixes;
}
nickrec = irc_nicklist_insert(channel, nick, op, halfop, voice, FALSE, prefixes);
irc_nicklist_insert(channel, nick, op, halfop, voice, FALSE, prefixes);
}
static void session_restore_channel(IRC_CHANNEL_REC *channel)