From b05549fc724662d3b174ce2b3904f1734fe945b9 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 10 Mar 2015 09:10:39 -0500 Subject: cpukit/libcrypt/misc.c: Reverse order of statements in ifdef --- cpukit/libcrypt/misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/libcrypt') diff --git a/cpukit/libcrypt/misc.c b/cpukit/libcrypt/misc.c index 9ca26d46e0..5daffba391 100644 --- a/cpukit/libcrypt/misc.c +++ b/cpukit/libcrypt/misc.c @@ -53,9 +53,9 @@ b64_from_24bit(uint8_t B2, uint8_t B1, uint8_t B0, int n, int *buflen, char **cp int i; #if defined(__rtems__) - w = (B2 << 16) | (B1 << 8) | B0; -#else w = ((uint32_t)B2 << 16) | ((uint32_t)B1 << 8) | B0; +#else + w = (B2 << 16) | (B1 << 8) | B0; #endif for (i = 0; i < n; i++) { **cp = itoa64[w&0x3f]; -- cgit v1.2.3