aboutsummaryrefslogtreecommitdiff
path: root/libjaylink/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'libjaylink/buffer.c')
-rw-r--r--libjaylink/buffer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjaylink/buffer.c b/libjaylink/buffer.c
index 527c25e..1aa1389 100644
--- a/libjaylink/buffer.c
+++ b/libjaylink/buffer.c
@@ -74,7 +74,7 @@ JAYLINK_PRIV uint16_t buffer_get_u16(const uint8_t *buffer, size_t offset)
* host byte order.
*/
#ifdef WORDS_BIGENDIAN
- value = (((uint16_t)buffer[offset + 1])) | \
+ value = (((uint16_t)buffer[offset + 1])) |
(((uint16_t)buffer[offset + 0]) << 8);
#else
memcpy(&value, buffer + offset, sizeof(value));
@@ -128,9 +128,9 @@ JAYLINK_PRIV uint32_t buffer_get_u32(const uint8_t *buffer, size_t offset)
* host byte order.
*/
#ifdef WORDS_BIGENDIAN
- value = (((uint32_t)buffer[offset + 3])) | \
- (((uint32_t)buffer[offset + 2]) << 8) | \
- (((uint32_t)buffer[offset + 1]) << 16) | \
+ value = (((uint32_t)buffer[offset + 3])) |
+ (((uint32_t)buffer[offset + 2]) << 8) |
+ (((uint32_t)buffer[offset + 1]) << 16) |
(((uint32_t)buffer[offset + 0]) << 24);
#else
memcpy(&value, buffer + offset, sizeof(value));