diff options
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; |