summaryrefslogtreecommitdiff
path: root/wiretap/netmon.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-03-09 21:18:55 +0000
committerGerald Combs <gerald@wireshark.org>2009-03-09 21:18:55 +0000
commitcc739fecb0300906438b19f874e615ead80e419b (patch)
tree8858970c6086a4fa93b4c9f804d5b46ef79df9c5 /wiretap/netmon.c
parente4892bb6c305211bf5b3fc1ba56a87981368eff8 (diff)
downloadwireshark-cc739fecb0300906438b19f874e615ead80e419b.tar.gz
P64 fixes.
svn path=/trunk/; revision=27683
Diffstat (limited to 'wiretap/netmon.c')
-rw-r--r--wiretap/netmon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/netmon.c b/wiretap/netmon.c
index c09f54c1aa..985a8c9f9e 100644
--- a/wiretap/netmon.c
+++ b/wiretap/netmon.c
@@ -778,7 +778,7 @@ static gboolean netmon_dump(wtap_dumper *wdh, const struct wtap_pkthdr *phdr,
netmon->frame_table[netmon->frame_table_index] =
htolel(netmon->frame_table_offset);
netmon->frame_table_index++;
- netmon->frame_table_offset += hdr_size + phdr->caplen + atm_hdrsize;
+ netmon->frame_table_offset += (int) hdr_size + phdr->caplen + atm_hdrsize;
return TRUE;
}