aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rx.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-03-16 19:26:52 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-03-16 19:26:52 +0000
commitabb6a98fc9d75b953e5a99e5cb170bde4a5061b5 (patch)
tree114771a143d79860e5192b18cf21ba15e4e52f3a /epan/dissectors/packet-rx.c
parent70a53138b30c25ebd7aa0243ff55cd5f134b006a (diff)
Added a cast to make it compile.
svn path=/trunk/; revision=24657
Diffstat (limited to 'epan/dissectors/packet-rx.c')
-rw-r--r--epan/dissectors/packet-rx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rx.c b/epan/dissectors/packet-rx.c
index 2edc4a7b9b..c1b3650902 100644
--- a/epan/dissectors/packet-rx.c
+++ b/epan/dissectors/packet-rx.c
@@ -489,7 +489,7 @@ dissect_rx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
proto_tree_add_time(tree, hf_rx_epoch, tvb,
offset, 4, &ts);
- rxinfo.epoch = ts.secs;
+ rxinfo.epoch = (guint32) ts.secs;
offset += 4;
}