aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-02-01 23:02:54 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-02-01 23:02:54 +0000
commit9f0f7848989c8d1bf4f230c0c6a6af837e42991a (patch)
treecdf7ba7a601b2e881fa41bd3fb8048f9b8cff001 /wsutil
parent2ba17598e32c9186e8917034264932f3af525547 (diff)
WIN32 ==> _WIN32
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35745 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/inet_v6defs.h2
-rw-r--r--wsutil/type_util.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/wsutil/inet_v6defs.h b/wsutil/inet_v6defs.h
index c6cfa8fdec..d6b6a9c1ac 100644
--- a/wsutil/inet_v6defs.h
+++ b/wsutil/inet_v6defs.h
@@ -34,7 +34,7 @@
* (without resorting to fragile link ordering tricks), we give our versions
* of those functions Wireshark-specific names.
*/
-#ifdef WIN32
+#ifdef _WIN32
#define inet_pton ws_inet_pton
#define inet_ntop ws_inet_ntop
#endif
diff --git a/wsutil/type_util.h b/wsutil/type_util.h
index 576e2f62bd..5cd81fd514 100644
--- a/wsutil/type_util.h
+++ b/wsutil/type_util.h
@@ -37,13 +37,13 @@
* gstutils.h: Header for various utility functions
*
* GNU GPL v2
- *
+ *
*/
guint64 type_util_gdouble_to_guint64(gdouble value);
-gdouble type_util_guint64_to_gdouble(guint64 value);
+gdouble type_util_guint64_to_gdouble(guint64 value);
-#ifdef WIN32
+#ifdef _WIN32
#define gdouble_to_guint64(value) type_util_gdouble_to_guint64(value)
#define guint64_to_gdouble(value) type_util_guint64_to_gdouble(value)
#else