Changeset 1431e8f in mainline for uspace/drv/uhci/utils/malloc32.h


Ignore:
Timestamp:
2011-01-29T00:18:26Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
76b57734
Parents:
4046c1ea
Message:

Another parameter ordering

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci/utils/malloc32.h

    r4046c1ea r1431e8f  
    6969
    7070static inline void * memalign32(size_t size, size_t alignment)
    71         { return memalign(size, alignment); }
     71        { return memalign(alignment, size); }
    7272
    7373static inline void free32(void * addr)
Note: See TracChangeset for help on using the changeset viewer.