From 88d4a911457b86d76908dd8ee25cc47ef2fe6aa9 Mon Sep 17 00:00:00 2001 From: Date: Mon, 8 Sep 2008 16:30:35 -0700 Subject: [PATCH] Style cleanup --- libmemcached/byteorder.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libmemcached/byteorder.c b/libmemcached/byteorder.c index f407fa03..c020785b 100644 --- a/libmemcached/byteorder.c +++ b/libmemcached/byteorder.c @@ -1,13 +1,14 @@ #include "common.h" /* Byte swap a 64-bit number. */ -static inline uint64_t swap64(uint64_t in) { +static inline uint64_t swap64(uint64_t in) +{ #ifndef BYTEORDER_BIG_ENDIAN /* Little endian, flip the bytes around until someone makes a faster/better * way to do this. */ uint64_t rv= 0; - int i= 0; - for(i= 0; i < 8; i++) + uint8_t x= 0; + for(x= 0; x < 8; x++) { rv= (rv << 8) | (in & 0xff); in >>= 8; -- 2.30.2