Changeset 7869e48 for libfaim/snac.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/snac.c

    re374dee r7869e48  
    11/*
    22 *
    3  * Various SNAC-related dodads... 
     3 * Various SNAC-related dodads...
    44 *
    55 * outstanding_snacs is a list of aim_snac_t structs.  A SNAC should be added
    66 * whenever a new SNAC is sent and it should remain in the list until the
    7  * response for it has been receieved. 
     7 * response for it has been receieved.
    88 *
    99 * cleansnacs() should be called periodically by the client in order
     
    7474
    7575/*
    76  * Finds a snac structure with the passed SNAC ID, 
     76 * Finds a snac structure with the passed SNAC ID,
    7777 * removes it from the list/hash, and returns a pointer to it.
    7878 *
     
    8080 *
    8181 */
    82 faim_internal aim_snac_t *aim_remsnac(aim_session_t *sess, aim_snacid_t id) 
     82faim_internal aim_snac_t *aim_remsnac(aim_session_t *sess, aim_snacid_t id)
    8383{
    8484        aim_snac_t *cur, **prev;
Note: See TracChangeset for help on using the changeset viewer.