diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-12-07 23:14:30 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-12-07 23:14:30 +0000 |
commit | a97a336d7d3dbe83f1be750c4f1fe8f1179c7066 (patch) | |
tree | aa71d639d742091366938acd82a1950e32a4cf55 /protocols/jabber/jabber.c | |
parent | d76e12f6762d0a13cbafd50ebad29baf60b7df8a (diff) |
Add CTCP HELP code. Also cleaning up some noop handlers in the Twitter
module (chat_with and send_typing) that suggested support for features
that obviously don't exist.
Diffstat (limited to 'protocols/jabber/jabber.c')
-rw-r--r-- | protocols/jabber/jabber.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/jabber/jabber.c b/protocols/jabber/jabber.c index e5bc3c14..802158c1 100644 --- a/protocols/jabber/jabber.c +++ b/protocols/jabber/jabber.c @@ -569,11 +569,11 @@ GList *jabber_buddy_action_list( bee_user_t *bu ) if( ret == NULL ) { - struct buddy_action ba[2] = { + static const struct buddy_action ba[2] = { { "VERSION", "Get client (version) information" }, }; - ret = g_list_prepend( ret, ba + 0 ); + ret = g_list_prepend( ret, (void*) ba + 0 ); } return ret; |