Changeset ebb95b6 for protocols/nogaim.c


Ignore:
Timestamp:
2007-11-14T23:42:07Z (16 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
50e1776
Parents:
a6df0b5 (diff), 1bf1ae6 (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.
Message:

Merging from devel/Jelmer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    ra6df0b5 rebb95b6  
    3636#include <ctype.h>
    3737
    38 static int remove_chat_buddy_silent( struct groupchat *b, char *handle );
     38static int remove_chat_buddy_silent( struct groupchat *b, const char *handle );
    3939
    4040GSList *connections;
     
    578578                /* Remove him/her from the groupchats to prevent PART messages after he/she QUIT already */
    579579                for( c = ic->groupchats; c; c = c->next )
    580                         remove_chat_buddy_silent( c, (char*) handle );
     580                        remove_chat_buddy_silent( c, handle );
    581581        }
    582582       
     
    849849}
    850850
    851 static int remove_chat_buddy_silent( struct groupchat *b, char *handle )
     851static int remove_chat_buddy_silent( struct groupchat *b, const char *handle )
    852852{
    853853        GList *i;
Note: See TracChangeset for help on using the changeset viewer.