aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dtls.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-06-27 16:50:28 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-06-27 16:50:28 +0000
commitc7d4d289d991b738efd17e16fc546a96ae916c7a (patch)
tree7167e90b73e3540a5a601f4d070cb760f24880fa /epan/dissectors/packet-dtls.c
parent35471e29d5e04f98ef70776d32f650f82caab9fc (diff)
MSVC doesn't like the conversion from guint64 to double, use gint64 instead (should be safe if I understand the implementation correct)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18585 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-dtls.c')
-rw-r--r--epan/dissectors/packet-dtls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dtls.c b/epan/dissectors/packet-dtls.c
index c1927b97d5..ca12f21c79 100644
--- a/epan/dissectors/packet-dtls.c
+++ b/epan/dissectors/packet-dtls.c
@@ -997,7 +997,7 @@ dissect_ssl3_record(tvbuff_t *tvb, packet_info *pinfo,
guint16 version;
guint16 epoch;
gdouble sequence_number;
- guint64 sequence_number_temp;
+ gint64 sequence_number_temp;
guint8 content_type;
guint8 next_byte;