diff options
author | Yang Tse <yangsita@gmail.com> | 2012-03-22 02:40:19 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-03-22 04:54:04 +0100 |
commit | 3c80309c276b8ceac13ab1a4824d216805d45afe (patch) | |
tree | 663336bf7af75d2ccc6a36a4bcace3d22ae45e54 /lib/base64.c | |
parent | c83de6d07625b813e3bbc31f9a0827c3a0007355 (diff) | |
download | curl-3c80309c276b8ceac13ab1a4824d216805d45afe.tar.gz |
fix several compiler warnings
Diffstat (limited to 'lib/base64.c')
-rw-r--r-- | lib/base64.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/base64.c b/lib/base64.c index 23ebb4aa9..ec46c09ab 100644 --- a/lib/base64.c +++ b/lib/base64.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -58,11 +58,11 @@ static void decodeQuantum(unsigned char *dest, const char *src) x = (x << 6); } - dest[2] = curlx_ultouc(x); + dest[2] = curlx_ultouc(x & 0xFFUL); x >>= 8; - dest[1] = curlx_ultouc(x); + dest[1] = curlx_ultouc(x & 0xFFUL); x >>= 8; - dest[0] = curlx_ultouc(x); + dest[0] = curlx_ultouc(x & 0xFFUL); } /* |