Changeset 5d9db76 for skype/skype.c


Ignore:
Timestamp:
2010-03-07T23:34:45Z (14 years ago)
Author:
Miklos Vajna <vmiklos@…>
Branches:
master
Children:
ea1d796
Parents:
1e3120f
Message:

checkpatch fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r1e3120f r5d9db76  
    164164        va_list args;
    165165        char str[IRC_LINE_SIZE];
    166        
     166
    167167        va_start(args, fmt);
    168168        vsnprintf(str, IRC_LINE_SIZE, fmt, args);
     
    559559                                                else {
    560560                                                        g_snprintf(buf, IRC_LINE_SIZE, "%s %s",
    561                                                                 set_getstr(&ic->acc->set, "edit_prefix"), body);
     561                                                                set_getstr(&ic->acc->set, "edit_prefix"),
     562                                                                body);
    562563                                                        sd->is_edit = 0;
    563564                                                }
    564                                         }
    565                                         else
     565                                        } else
    566566                                                g_snprintf(buf, IRC_LINE_SIZE, "/me %s",
    567567                                                        body);
     
    762762                 * just leave it out. */
    763763                /*skype_printf(ic, "OPEN CHAT %s\n", id);*/
    764                 g_snprintf(buf, IRC_LINE_SIZE, "%s@skype.com", sd->groupchat_with);
     764                g_snprintf(buf, IRC_LINE_SIZE, "%s@skype.com",
     765                                sd->groupchat_with);
    765766                imcb_chat_add_buddy(gc, buf);
    766767                imcb_chat_add_buddy(gc, sd->username);
     
    803804                        if (!strcmp(members[i], sd->username))
    804805                                continue;
    805                         g_snprintf(buf, IRC_LINE_SIZE, "%s@skype.com", members[i]);
     806                        g_snprintf(buf, IRC_LINE_SIZE, "%s@skype.com",
     807                                        members[i]);
    806808                        if (!g_list_find_custom(gc->in_room, buf,
    807809                                (GCompareFunc)strcmp))
Note: See TracChangeset for help on using the changeset viewer.