summaryrefslogtreecommitdiff
path: root/asn1/t124
diff options
context:
space:
mode:
authorGraeme Lunt <graeme.lunt@smhs.co.uk>2011-09-21 08:09:04 +0000
committerGraeme Lunt <graeme.lunt@smhs.co.uk>2011-09-21 08:09:04 +0000
commit5f332e47e25e9c850b68d060a4b6ca0cbf94a868 (patch)
treee26ff4f64ad1f84f4eaf7cb31b12d4a5534c7a00 /asn1/t124
parentc0c4fb5f21d90145ad67087630647b39cd4a19d7 (diff)
downloadwireshark-5f332e47e25e9c850b68d060a4b6ca0cbf94a868.tar.gz
Fix for unary minus warning on Windows
svn path=/trunk/; revision=39068
Diffstat (limited to 'asn1/t124')
-rw-r--r--asn1/t124/packet-t124-template.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/asn1/t124/packet-t124-template.c b/asn1/t124/packet-t124-template.c
index aa1e466a35..d620f2cf15 100644
--- a/asn1/t124/packet-t124-template.c
+++ b/asn1/t124/packet-t124-template.c
@@ -37,6 +37,11 @@
#include "packet-ber.h"
#include "packet-t124.h"
+#ifdef _MSC_VER
+/* disable: "warning C4146: unary minus operator applied to unsigned type, result still unsigned" */
+#pragma warning(disable:4146)
+#endif
+
#define PNAME "GENERIC-CONFERENCE-CONTROL T.124"
#define PSNAME "T.124"
#define PFNAME "t124"