aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2009-12-14 16:50:42 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2009-12-14 16:50:42 +0000
commitd0260a142bce973bd883f8624222a9aa9717fef4 (patch)
treee7d52710f98f0189d3b4ee2ba3b921d383c63fd5
parent7a4ae2c3b59dd1283cf22989ced5fb98b0f3fae1 (diff)
Add a cast to try to keep the win64 compiler happy
svn path=/trunk/; revision=31267
-rw-r--r--epan/dissectors/packet-mac-lte.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mac-lte.c b/epan/dissectors/packet-mac-lte.c
index 70eb0dd1bc..49f2aaaf03 100644
--- a/epan/dissectors/packet-mac-lte.c
+++ b/epan/dissectors/packet-mac-lte.c
@@ -1449,8 +1449,8 @@ static void TrackSRInfo(SREvent event, packet_info *pinfo, proto_tree *tree,
break;
case SR_Outstanding:
- timeSinceRequest = ((pinfo->fd->abs_ts.secs - state->requestTime.secs) * 1000) +
- ((pinfo->fd->abs_ts.nsecs - state->requestTime.nsecs) / 1000000);
+ timeSinceRequest = (guint32)(((pinfo->fd->abs_ts.secs - state->requestTime.secs) * 1000) +
+ ((pinfo->fd->abs_ts.nsecs - state->requestTime.nsecs) / 1000000));
switch (event) {
case SR_Grant: