diff options
author | lloyd <[email protected]> | 2010-10-15 16:57:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-15 16:57:28 +0000 |
commit | 2420a7b38f2107e6671bd53ccd66a320f791c6d7 (patch) | |
tree | 436a4502ffef55fb4908e446faf22c786a052c06 /src/utils/loadstor.h | |
parent | 4f939c4f33798e9aa300ea876ed3df28bc2739c3 (diff) |
Prefix vs postfix
Diffstat (limited to 'src/utils/loadstor.h')
-rw-r--r-- | src/utils/loadstor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/loadstor.h b/src/utils/loadstor.h index 047e9c067..29e00592a 100644 --- a/src/utils/loadstor.h +++ b/src/utils/loadstor.h @@ -101,7 +101,7 @@ inline T load_be(const byte in[], size_t off) { in += off * sizeof(T); T out = 0; - for(size_t i = 0; i != sizeof(T); i++) + for(size_t i = 0; i != sizeof(T); ++i) out = (out << 8) | in[i]; return out; } @@ -117,7 +117,7 @@ inline T load_le(const byte in[], size_t off) { in += off * sizeof(T); T out = 0; - for(size_t i = 0; i != sizeof(T); i++) + for(size_t i = 0; i != sizeof(T); ++i) out = (out << 8) | in[sizeof(T)-1-i]; return out; } |