diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-06 13:58:36 -0500 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-06 13:58:36 -0500 |
commit | eab0c42eac865a7e965878a7f2ad548371bd34d5 (patch) | |
tree | 1dc8c6e55cb51830bd0ca5de09d277d5ad206c84 /src/bitfield/8byte.c | |
parent | cc2f44eeedac7d6e86005543c7e1596c3c78d551 (diff) |
Standardize order of arguments - destination is always last.
Diffstat (limited to 'src/bitfield/8byte.c')
-rw-r--r-- | src/bitfield/8byte.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bitfield/8byte.c b/src/bitfield/8byte.c index 72f7e32b..0ae6894b 100644 --- a/src/bitfield/8byte.c +++ b/src/bitfield/8byte.c @@ -47,8 +47,8 @@ uint64_t eightbyte_get_bitfield(uint64_t source, const uint16_t offset, return ret & bitmask(bit_count); } -bool eightbyte_set_bitfield(uint64_t* destination, uint64_t value, const uint16_t offset, - const uint16_t bit_count) { +bool eightbyte_set_bitfield(uint64_t value, const uint16_t offset, + const uint16_t bit_count, uint64_t* destination) { if(value > bitmask(bit_count)) { return false; } |