Changeset 2231302 for protocols/nogaim.c


Ignore:
Timestamp:
2007-11-05T22:59:49Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
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.
Message:

Merging from Jelmer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r5e2615a r2231302  
    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;
     
    556556                /* Remove him/her from the conversations to prevent PART messages after he/she QUIT already */
    557557                for( c = ic->conversations; c; c = c->next )
    558                         remove_chat_buddy_silent( c, (char*) handle );
     558                        remove_chat_buddy_silent( c, handle );
    559559        }
    560560       
     
    821821}
    822822
    823 static int remove_chat_buddy_silent( struct groupchat *b, char *handle )
     823static int remove_chat_buddy_silent( struct groupchat *b, const char *handle )
    824824{
    825825        GList *i;
Note: See TracChangeset for help on using the changeset viewer.