diff --git a/src/event.c b/src/event.c index f48863e..56d0a24 100644 --- a/src/event.c +++ b/src/event.c @@ -39,7 +39,7 @@ #include #include #include -#define _sleep(x) usleep((x)*1000) +#define _sleep(x) usleep((x) * 1000) #else #include #ifndef ETIMEDOUT diff --git a/src/md5.c b/src/md5.c index 1ad3822..782d9c1 100644 --- a/src/md5.c +++ b/src/md5.c @@ -37,7 +37,7 @@ #define PUT_32BIT_LSB_FIRST(cp, value) \ do { \ - (cp)[0] = (value)&0xFF; \ + (cp)[0] = (value) & 0xFF; \ (cp)[1] = ((value) >> 8) & 0xFF; \ (cp)[2] = ((value) >> 16) & 0xFF; \ (cp)[3] = ((value) >> 24) & 0xFF; \ diff --git a/src/rand.c b/src/rand.c index bedfdaa..4b41fb0 100644 --- a/src/rand.c +++ b/src/rand.c @@ -68,9 +68,9 @@ struct _xmpp_rand_t { }; /* returns smallest number mupliple of y that not less than x */ -#define round_up(x, y) (((x) + (y)-1) / (y) * (y)) +#define round_up(x, y) (((x) + (y) - 1) / (y) * (y)) /* returns smallest integer number that not less than x/y */ -#define div_round_up(x, y) (((x) + (y)-1) / (y)) +#define div_round_up(x, y) (((x) + (y) - 1) / (y)) /* adds two arrays as numbers in big-endian representation and stores * result in the first one. diff --git a/src/resolver.c b/src/resolver.c index becc438..028320a 100644 --- a/src/resolver.c +++ b/src/resolver.c @@ -630,7 +630,7 @@ static void netbuf_add_16bitnum(unsigned char *buf, /* assuming big endian */ *p++ = (num >> 8) & 0xff; - *p++ = (num)&0xff; + *p++ = (num) & 0xff; *offset += 2; } diff --git a/src/sha.h b/src/sha.h index 3c4df08..8cf85c8 100644 --- a/src/sha.h +++ b/src/sha.h @@ -53,7 +53,7 @@ extern "C" { (y)[0] = (uint8_t)(((x) >> 24) & 255); \ (y)[1] = (uint8_t)(((x) >> 16) & 255); \ (y)[2] = (uint8_t)(((x) >> 8) & 255); \ - (y)[3] = (uint8_t)((x)&255); \ + (y)[3] = (uint8_t)((x) & 255); \ } while (0) #define LOAD32H(x, y) \ @@ -72,7 +72,7 @@ extern "C" { (y)[4] = (uint8_t)(((x) >> 24) & 255); \ (y)[5] = (uint8_t)(((x) >> 16) & 255); \ (y)[6] = (uint8_t)(((x) >> 8) & 255); \ - (y)[7] = (uint8_t)((x)&255); \ + (y)[7] = (uint8_t)((x) & 255); \ } while (0) #define LOAD64H(x, y) \ @@ -96,13 +96,13 @@ extern "C" { #define CONST64(n) n##ULL #endif -#define RORc(x, y) \ - (((((uint32_t)(x)&0xFFFFFFFFUL) >> (uint32_t)((y)&31)) | \ - ((uint32_t)(x) << (uint32_t)((32 - ((y)&31)) & 31))) & \ +#define RORc(x, y) \ + (((((uint32_t)(x) & 0xFFFFFFFFUL) >> (uint32_t)((y) & 31)) | \ + ((uint32_t)(x) << (uint32_t)((32 - ((y) & 31)) & 31))) & \ 0xFFFFFFFFUL) -#define ROR64c(x, y) \ - (((((x)&CONST64(0xFFFFFFFFFFFFFFFF)) >> ((uint64_t)(y)&CONST64(63))) | \ - ((x) << (((uint64_t)64 - ((y)&63)) & 63))) & \ +#define ROR64c(x, y) \ + (((((x) & CONST64(0xFFFFFFFFFFFFFFFF)) >> ((uint64_t)(y) & CONST64(63))) | \ + ((x) << (((uint64_t)64 - ((y) & 63)) & 63))) & \ CONST64(0xFFFFFFFFFFFFFFFF)) #ifdef __cplusplus diff --git a/src/sha256.c b/src/sha256.c index 59bd8db..53b823f 100644 --- a/src/sha256.c +++ b/src/sha256.c @@ -9,7 +9,7 @@ #define Ch(x, y, z) (z ^ (x & (y ^ z))) #define Maj(x, y, z) (((x | y) & z) | (x & y)) #define S(x, n) RORc((x), (n)) -#define R(x, n) (((x)&0xFFFFFFFFUL) >> (n)) +#define R(x, n) (((x) & 0xFFFFFFFFUL) >> (n)) #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3)) diff --git a/src/sha512.c b/src/sha512.c index 6b2f25f..435498e 100644 --- a/src/sha512.c +++ b/src/sha512.c @@ -52,7 +52,7 @@ static const uint64_t K[80] = { #define Ch(x, y, z) (z ^ (x & (y ^ z))) #define Maj(x, y, z) (((x | y) & z) | (x & y)) #define S(x, n) ROR64c(x, n) -#define R(x, n) (((x)&CONST64(0xFFFFFFFFFFFFFFFF)) >> ((uint64_t)n)) +#define R(x, n) (((x) & CONST64(0xFFFFFFFFFFFFFFFF)) >> ((uint64_t)n)) #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41)) #define Gamma0(x) (S(x, 1) ^ S(x, 8) ^ R(x, 7))