Changeset 5935fe4c in mainline


Ignore:
Timestamp:
2011-01-28T23:56:04Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
24b07ac4
Parents:
096a1ff
Message:

Fix wrong parameter order

File:
1 edited

Legend:

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

    r096a1ff r5935fe4c  
    5353static inline void * malloc32(size_t size)
    5454/* TODO: this is ugly */
    55         { return memalign(size, 16); }
     55        { return memalign(16, size); }
    5656
    5757static inline void * get_page()
Note: See TracChangeset for help on using the changeset viewer.