aboutsummaryrefslogtreecommitdiff
path: root/lib/warnless.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-02-19 18:02:38 +0000
committerYang Tse <yangsita@gmail.com>2010-02-19 18:02:38 +0000
commit048438345aed2acbb044e107946a804bc2d02363 (patch)
tree5b1621c5667f12d2d83fd71e4de4c3531ed44204 /lib/warnless.c
parent6e461e45c3623f53c682a7d08a2c38f096cc5b17 (diff)
fix compiler warning
Diffstat (limited to 'lib/warnless.c')
-rw-r--r--lib/warnless.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/warnless.c b/lib/warnless.c
new file mode 100644
index 000000000..83a1c68ab
--- /dev/null
+++ b/lib/warnless.c
@@ -0,0 +1,40 @@
+/***************************************************************************
+ * _ _ ____ _
+ * Project ___| | | | _ \| |
+ * / __| | | | |_) | |
+ * | (__| |_| | _ <| |___
+ * \___|\___/|_| \_\_____|
+ *
+ * Copyright (C) 1998 - 2010, 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
+ * are also available at http://curl.haxx.se/docs/copyright.html.
+ *
+ * You may opt to use, copy, modify, merge, publish, distribute and/or sell
+ * copies of the Software, and permit persons to whom the Software is
+ * furnished to do so, under the terms of the COPYING file.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ * $Id$
+ ***************************************************************************/
+
+#include "setup.h"
+
+#include "warnless.h"
+
+unsigned short Curl_ultous(unsigned long ulnum)
+{
+#ifdef __INTEL_COMPILER
+# pragma warning(push)
+# pragma warning(disable:810) /* conversion may lose significant bits */
+#endif
+
+ return (unsigned short)(ulnum & 0xFFFFUL);
+
+#ifdef __INTEL_COMPILER
+# pragma warning(pop)
+#endif
+}