Squelch a (Y2.038K) warning.

svn path=/trunk/; revision=46756
This commit is contained in:
Guy Harris 2012-12-26 06:41:49 +00:00
parent 229ec8c545
commit 7f40879104
1 changed files with 1 additions and 1 deletions

View File

@ -4063,7 +4063,7 @@ spotlight_date(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint offset,
for (i = 0; i < count; i++) {
query_data64 = spotlight_ntoh64(tvb, offset, encoding) >> 24;
t.secs = query_data64 - SPOTLIGHT_TIME_DELTA;
t.secs = (time_t)(query_data64 - SPOTLIGHT_TIME_DELTA);
t.nsecs = 0;
proto_tree_add_time(tree, hf_afp_spotlight_date, tvb, offset, 8, &t);
offset += 8;