diff options
author | James Booth <boothj5@gmail.com> | 2014-06-03 21:48:38 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-06-03 21:48:38 +0100 |
commit | d0fa51fe6701414963e31c5c99f08faa03f68fff (patch) | |
tree | 12615150ffa70f6814a6b2bdf5e71de4e0768a51 /src | |
parent | 1925cb80ecc9a1f689a2797d65f34ead7b628bee (diff) | |
download | profani-tty-d0fa51fe6701414963e31c5c99f08faa03f68fff.tar.gz |
Fixed compiler warning
Diffstat (limited to 'src')
-rw-r--r-- | src/command/commands.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index b8124120..cf9dec11 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -1382,15 +1382,12 @@ cmd_info(gchar **args, struct cmd_help_t help) jabber_conn_status_t conn_status = jabber_get_connection_status(); win_type_t win_type = ui_current_win_type(); PContact pcontact = NULL; - char *recipient; if (conn_status != JABBER_CONNECTED) { cons_show("You are not currently connected."); return TRUE; } - recipient = ui_current_recipient(); - switch (win_type) { case WIN_MUC: |