Changeset 7869e48 for libfaim/misc.c


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/misc.c

    rcf02dd6 r7869e48  
    22 * misc.c
    33 *
    4  * Random stuff.  Basically just a few functions for sending 
     4 * Random stuff.  Basically just a few functions for sending
    55 * simple SNACs, and then the generic error handler.
    66 *
     
    88
    99#define FAIM_INTERNAL
    10 #include <aim.h> 
     10#include <aim.h>
    1111
    1212/*
     
    6161
    6262        if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_FLAP, 0x02, 10+4)))
    63                 return -ENOMEM; 
     63                return -ENOMEM;
    6464
    6565        snacid = aim_cachesnac(sess, family, subtype, 0x0000, NULL, 0);
     
    8282
    8383        if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_FLAP, 0x02, 10+2)))
    84                 return -ENOMEM; 
     84                return -ENOMEM;
    8585
    8686        snacid = aim_cachesnac(sess, family, subtype, 0x0000, NULL, 0);
Note: See TracChangeset for help on using the changeset viewer.