Changeset a5e6aa1


Ignore:
Timestamp:
2011-01-03T02:22:18Z (13 years ago)
Author:
Miklos Vajna <vmiklos@…>
Branches:
master
Children:
46e9822
Parents:
cb6d3c9
Message:

Unused parameters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    rcb6d3c9 ra5e6aa1  
    14311431        static GList *ret;
    14321432
     1433        /* Unused parameter */
     1434        bu = bu;
     1435
    14331436        if (ret == NULL) {
    14341437                static const struct buddy_action ba[3] = {
     
    14451448void *skype_buddy_action(struct bee_user *bu, const char *action, char * const args[], void *data)
    14461449{
     1450        /* Unused parameters */
     1451        args = args;
     1452        data = data;
     1453
    14471454        if (!g_strcasecmp(action, "CALL"))
    14481455                skype_call(bu->ic, bu->handle);
Note: See TracChangeset for help on using the changeset viewer.