libpurple/protocols/jabber/jutil.c

branch
release-2.1.0
changeset 18121
2d8ea56b9097
parent 15952
c087855dc551
child 18122
9bf9970c1b6a
equal deleted inserted replaced
18120:aefaf97dfa23 18121:2d8ea56b9097
219 219
220 PurpleConversation * 220 PurpleConversation *
221 jabber_find_unnormalized_conv(const char *name, PurpleAccount *account) 221 jabber_find_unnormalized_conv(const char *name, PurpleAccount *account)
222 { 222 {
223 PurpleConversation *c = NULL; 223 PurpleConversation *c = NULL;
224 GList *cnv; 224 const GList *cnv;
225 225
226 g_return_val_if_fail(name != NULL, NULL); 226 g_return_val_if_fail(name != NULL, NULL);
227 227
228 for(cnv = purple_get_conversations(); cnv; cnv = cnv->next) { 228 for(cnv = purple_get_conversations(); cnv; cnv = cnv->next) {
229 c = (PurpleConversation*)cnv->data; 229 c = (PurpleConversation*)cnv->data;

mercurial