fix compiler warning
[platform/upstream/curl.git] / lib / warnless.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at http://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  * $Id$
22  ***************************************************************************/
23
24 #include "setup.h"
25
26 #include "warnless.h"
27
28 unsigned short Curl_ultous(unsigned long ulnum)
29 {
30 #ifdef __INTEL_COMPILER
31 #  pragma warning(push)
32 #  pragma warning(disable:810) /* conversion may lose significant bits */
33 #endif
34
35   return (unsigned short)(ulnum & 0xFFFFUL);
36
37 #ifdef __INTEL_COMPILER
38 #  pragma warning(pop)
39 #endif
40 }
41
42 unsigned char Curl_ultouc(unsigned long ulnum)
43 {
44 #ifdef __INTEL_COMPILER
45 #  pragma warning(push)
46 #  pragma warning(disable:810) /* conversion may lose significant bits */
47 #endif
48
49   return (unsigned char)(ulnum & 0xFFUL);
50
51 #ifdef __INTEL_COMPILER
52 #  pragma warning(pop)
53 #endif
54 }