[rtems commit] cpukit/libcrypt/misc.c: Reverse order of statements in ifdef

Joel Sherril joel at rtems.org
Tue Mar 10 14:10:46 UTC 2015


Module:    rtems
Branch:    master
Commit:    b05549fc724662d3b174ce2b3904f1734fe945b9
Changeset: http://git.rtems.org/rtems/commit/?id=b05549fc724662d3b174ce2b3904f1734fe945b9

Author:    Joel Sherrill <joel.sherrill at oarcorp.com>
Date:      Tue Mar 10 09:10:39 2015 -0500

cpukit/libcrypt/misc.c: Reverse order of statements in ifdef

---

 cpukit/libcrypt/misc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cpukit/libcrypt/misc.c b/cpukit/libcrypt/misc.c
index 9ca26d4..5daffba 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];




More information about the vc mailing list