Ignore:
Timestamp:
2007-10-12T12:18:16Z (17 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
c511365
Parents:
f618a4a
Message:

Fix another warning.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    rf618a4a r764b163d  
    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.