aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-megaco.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-27 02:14:56 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-27 02:14:56 +0000
commitcc6aeb92474af6f6f17a72cccf3cb7e72b1ba23a (patch)
tree00c229fc00e704d7d93adc207848d84a29e8c285 /epan/dissectors/packet-megaco.c
parent380551336071a31281e70afea1aafe151eb0d76c (diff)
fix the remaining MSVC warnings by setting individual #pragma(warning:disable) settings - this is very certainly not the way to go, but the way to prevent additional warnings rushing in ...
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21221 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-megaco.c')
-rw-r--r--epan/dissectors/packet-megaco.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/dissectors/packet-megaco.c b/epan/dissectors/packet-megaco.c
index 08a429c21e..867b1d447c 100644
--- a/epan/dissectors/packet-megaco.c
+++ b/epan/dissectors/packet-megaco.c
@@ -67,6 +67,10 @@
#define PORT_MEGACO_TXT 2944
#define PORT_MEGACO_BIN 2945
+#ifdef _WIN32
+/* disable: warning C4013: 'xy' undefined; assuming extern returning int */
+#pragma warning(disable:4013)
+#endif
void proto_reg_handoff_megaco(void);