Changeset 4ae3ffc


Ignore:
Timestamp:
2010-12-08T03:22:04Z (13 years ago)
Author:
Miklos Vajna <vmiklos@…>
Branches:
master
Children:
35249d6
Parents:
87e1eba
Message:

silence -Wunused-parameter warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r87e1eba r4ae3ffc  
    876876static void skype_parse_ping(struct im_connection *ic, char *line)
    877877{
     878        /* Unused parameter */
     879        line = line;
    878880        skype_printf(ic, "PONG\n");
    879881}
     
    918920                { "CHATS ", skype_parse_chats },
    919921        };
     922
     923        /* Unused parameters */
     924        fd = fd;
     925        cond = cond;
    920926
    921927        if (!sd || sd->fd == -1)
     
    983989        struct im_connection *ic = data;
    984990        struct skype_data *sd = ic->proto_data;
     991
     992        /* Unused parameter */
     993        cond = cond;
     994
    985995        if (!source) {
    986996                sd->ssl = NULL;
     
    9901000        }
    9911001        imcb_log(ic, "Connected to server, logging in");
     1002
    9921003        return skype_start_stream(ic);
    9931004}
     
    10301041        int st;
    10311042
     1043        /* Unused parameter */
     1044        flags = flags;
     1045
    10321046        nick = g_strdup(who);
    10331047        ptr = strchr(nick, '@');
     
    10601074        const struct skype_away_state *state;
    10611075
     1076        /* Unused parameter */
     1077        message = message;
     1078
    10621079        if (state_txt == NULL)
    10631080                state = skype_away_state_by_name("Online");
     
    10711088        static GList *l;
    10721089        int i;
     1090
     1091        /* Unused parameter */
     1092        ic = ic;
    10731093
    10741094        if (l == NULL)
     
    11381158        char *nick, *ptr;
    11391159
     1160        /* Unused parameter */
     1161        group = group;
     1162
    11401163        nick = g_strdup(who);
    11411164        ptr = strchr(nick, '@');
     
    11511174        char *nick, *ptr;
    11521175
     1176        /* Unused parameter */
     1177        group = group;
     1178
    11531179        nick = g_strdup(who);
    11541180        ptr = strchr(nick, '@');
     
    11621188{
    11631189        struct im_connection *ic = gc->ic;
     1190
     1191        /* Unused parameter */
     1192        flags = flags;
     1193
    11641194        skype_printf(ic, "CHATMESSAGE %s %s\n", gc->title, message);
    11651195}
     
    11761206        struct im_connection *ic = gc->ic;
    11771207        char *ptr, *nick;
     1208
     1209        /* Unused parameter */
     1210        who = who;
     1211
    11781212        nick = g_strdup(message);
    11791213        ptr = strchr(nick, '@');
Note: See TracChangeset for help on using the changeset viewer.