Changeset 16


Ignore:
Timestamp:
09/16/06 15:53:38 (18 years ago)
Author:
zorg
Message:

Cosmetics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/zorg/src/mpc_decoder.c

    r11 r16  
    9696static mpc_int32_t f_read_dword(mpc_decoder *d, mpc_uint32_t * ptr, mpc_uint32_t count)
    9797{
    98     mpc_uint32_t n;
    9998    count = f_read(d, ptr, count << 2) >> 2;
    10099#ifndef MPC_LITTLE_ENDIAN
    101     for(n = 0; n< count; n++) {
    102         ptr[n] = mpc_swap32(ptr[n]);
     100    {
     101        mpc_uint32_t n;
     102        for(n = 0; n< count; n++)
     103            ptr[n] = mpc_swap32(ptr[n]);
    103104    }
    104105#endif
Note: See TracChangeset for help on using the changeset viewer.