diff options
-rw-r--r-- | include/bit_ops.h | 3 | ||||
-rw-r--r-- | modules/mp_amd64/bit_ops.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/include/bit_ops.h b/include/bit_ops.h index 7081ee3e5..82cd69afa 100644 --- a/include/bit_ops.h +++ b/include/bit_ops.h @@ -66,7 +66,8 @@ inline void xor_buf(byte data[], const byte mask[], u32bit length) /************************************************* * XOR Arrays * *************************************************/ -inline void xor_buf(byte out[], const byte in[], const byte mask[], u32bit length) +inline void xor_buf(byte out[], const byte in[], + const byte mask[], u32bit length) { while(length >= 8) { diff --git a/modules/mp_amd64/bit_ops.h b/modules/mp_amd64/bit_ops.h index dd7b33f32..a2f881229 100644 --- a/modules/mp_amd64/bit_ops.h +++ b/modules/mp_amd64/bit_ops.h @@ -61,7 +61,8 @@ inline void xor_buf(byte out[], const byte in[], u32bit length) /************************************************* * XOR Arrays * *************************************************/ -inline void xor_buf(byte out[], const byte in[], const byte in2[], u32bit length) +inline void xor_buf(byte out[], const byte in[], + const byte in2[], u32bit length) { while(length >= 8) { |