summaryrefslogtreecommitdiffstats
path: root/cpukit/libcrypt/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcrypt/misc.c')
-rw-r--r--cpukit/libcrypt/misc.c4
1 files changed, 2 insertions, 2 deletions
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];