about summary refs log tree commit diff stats
path: root/command.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-05-10 00:30:03 +0100
committerJames Booth <boothj5@gmail.com>2012-05-10 00:30:03 +0100
commita336148cd2b0c529515e7b0d74afae9e0660cf6c (patch)
treeeae5b857545e67e84640b7816f2ced3ad1404e35 /command.c
parentb2385010b5b81bd66b840802eb36b5a0945eba8b (diff)
downloadprofani-tty-a336148cd2b0c529515e7b0d74afae9e0660cf6c.tar.gz
Using GSList for contact list
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c
index 1de58310..772d171f 100644
--- a/command.c
+++ b/command.c
@@ -170,7 +170,7 @@ static gboolean _cmd_who(void)
     if (conn_status != JABBER_CONNECTED) {
         cons_not_connected();
     } else {
-        struct contact_node_t *list = get_contact_list();
+        GSList *list = get_contact_list();
         cons_show_online_contacts(list);
     }