Changeset 2231302 for protocols/nogaim.c
- Timestamp:
- 2007-11-05T22:59:49Z (17 years ago)
- Branches:
- master
- Children:
- be68d99
- Parents:
- 5e2615a (diff), 7435ccf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.c
r5e2615a r2231302 36 36 #include <ctype.h> 37 37 38 static int remove_chat_buddy_silent( struct groupchat *b, c har *handle );38 static int remove_chat_buddy_silent( struct groupchat *b, const char *handle ); 39 39 40 40 GSList *connections; … … 556 556 /* Remove him/her from the conversations to prevent PART messages after he/she QUIT already */ 557 557 for( c = ic->conversations; c; c = c->next ) 558 remove_chat_buddy_silent( c, (char*)handle );558 remove_chat_buddy_silent( c, handle ); 559 559 } 560 560 … … 821 821 } 822 822 823 static int remove_chat_buddy_silent( struct groupchat *b, c har *handle )823 static int remove_chat_buddy_silent( struct groupchat *b, const char *handle ) 824 824 { 825 825 GList *i;
Note: See TracChangeset
for help on using the changeset viewer.