Ignore:
Timestamp:
Jan 12, 2013, 1:43:13 PM (11 years ago)
Author:
Jason Gross <jgross@mit.edu>
Children:
e3a0d71, 4485285
Parents:
4626016
git-author:
Jason Gross <jgross@mit.edu> (01/12/13 13:13:18)
git-committer:
Jason Gross <jgross@mit.edu> (01/12/13 13:43:13)
Message:
Remove trailing whitespace

This commit was made with the command sequence

    for i in $(git ls-files | tr '\n' ' ');
    do
      echo $i; sed -i s'/\s\+$//g' "$(readlink -f $i)";
    done
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfaim/buddylist.c

    rcf02dd6 r7869e48  
    3131        int ret = 0;
    3232
    33         /* 
    34          * TLVs follow 
     33        /*
     34         * TLVs follow
    3535         */
    3636        tlvlist = aim_tlvlist_read(bs);
     
    4848         * list.  (This is called the "reverse list" by a certain
    4949         * other IM protocol.)
    50          * 
     50         *
    5151         */
    5252        if (aim_tlv_gettlv(tlvlist, 0x0002, 1))
     
    6464        aim_tlvlist_free(&tlvlist);
    6565
    66         return ret; 
     66        return ret;
    6767}
    6868
     
    103103 * buddy_list = "Screen Name One&ScreenNameTwo&";
    104104 *
    105  * XXX Clean this up. 
     105 * XXX Clean this up.
    106106 *
    107107 */
     
    114114        char *tmpptr = NULL;
    115115
    116         if (!buddy_list || !(localcpy = strdup(buddy_list))) 
     116        if (!buddy_list || !(localcpy = strdup(buddy_list)))
    117117                return -EINVAL;
    118118
     
    176176}
    177177
    178 /* 
     178/*
    179179 * Subtype 0x000b
    180180 *
     
    194194
    195195        snacid = aim_cachesnac(sess, 0x0003, 0x000b, 0x0000, NULL, 0);
    196        
     196
    197197        aim_putsnac(&fr->data, 0x0003, 0x000b, 0x0000, snacid);
    198198        aim_putuserinfo(&fr->data, info);
     
    203203}
    204204
    205 /* 
     205/*
    206206 * Subtype 0x000c
    207207 *
     
    221221
    222222        snacid = aim_cachesnac(sess, 0x0003, 0x000c, 0x0000, NULL, 0);
    223        
     223
    224224        aim_putsnac(&fr->data, 0x0003, 0x000c, 0x0000, snacid);
    225225        aimbs_put8(&fr->data, strlen(sn));
Note: See TracChangeset for help on using the changeset viewer.