Ignore:
Timestamp:
2015-02-20T22:50:54Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
0b9daac, 3d45471, 7733b8c
Parents:
af359b4
git-author:
Indent <please@…> (19-02-15 05:47:20)
git-committer:
dequis <dx@…> (20-02-15 22:50:54)
Message:

Reindent everything to K&R style with tabs

Used uncrustify, with the configuration file in ./doc/uncrustify.cfg

Commit author set to "Indent <please@…>" so that it's easier to
skip while doing git blame.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/stats.c

    raf359b4 r5ebff60  
    22#include <aim.h>
    33
    4 static int reportinterval(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs)
     4static int reportinterval(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac,
     5                          aim_bstream_t *bs)
    56{
    67        guint16 interval;
     
    910        interval = aimbs_get16(bs);
    1011
    11         if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
     12        if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) {
    1213                return userfunc(sess, rx, interval);
     14        }
    1315
    1416        return 0;
     
    1820{
    1921
    20         if (snac->subtype == 0x0002)
     22        if (snac->subtype == 0x0002) {
    2123                return reportinterval(sess, mod, rx, snac, bs);
     24        }
    2225
    2326        return 0;
Note: See TracChangeset for help on using the changeset viewer.