summaryrefslogtreecommitdiff
path: root/epan
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2015-08-12 16:15:05 -0400
committerBill Meier <wmeier@newsguy.com>2015-08-12 20:51:19 +0000
commit6ae8df4a430678bf68d87877d69b935956029189 (patch)
tree83943223632d4ebb8b05c342cdf89d2ccea3a18a /epan
parent5c80f08648ed14ecc03c20d8c52f25d71b03dd26 (diff)
downloadwireshark-6ae8df4a430678bf68d87877d69b935956029189.tar.gz
[pdc] [msvc-2015] Change a variable type to prevent 32-bit MSVC-2015 "internal error"
[...]\packet-pdc.c(205) : fatal error C1001: An internal error has occurred in the compiler. (compiler file 'f:\dd\vctools\compiler\utc\src\p2\main.c', line 246) To work around this problem, try simplifying or changing the program near the locations listed above. Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information INTERNAL COMPILER ERROR in 'C:\Program Files\Microsoft Visual Studio 14.0\VC\BIN\cl.EXE' Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information Change-Id: I505898d0c76244a56d75af1a1c5bf30554dd9a2b Reviewed-on: https://code.wireshark.org/review/10005 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-pdc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-pdc.c b/epan/dissectors/packet-pdc.c
index 67f20dee08..bb1e924c40 100644
--- a/epan/dissectors/packet-pdc.c
+++ b/epan/dissectors/packet-pdc.c
@@ -147,7 +147,7 @@ static const value_string valstr_drmpdu_reason[] = {
/* start of functions here */
static int dissect_simpdu(tvbuff_t *tvb, proto_tree *tree, guint16 offset, guint8 lenIndicator)
{
- guint16 bytesProcessed;
+ gint bytesProcessed;
guint8 paramCode;
proto_item *simpduItem;
proto_tree *simpduVarTree;