aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/visual.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-09 22:37:55 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-09 22:37:55 +0000
commite14fb21ea584ee8f05cd9d3341ad8cfe235a4cb3 (patch)
tree91bac88216fa0f7b3a7997c8e9516627e8634e31 /wiretap/visual.c
parent5be6a9411d02587ed9fe5eb0df47a3316dc73298 (diff)
More 64-bit fixes.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27685 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wiretap/visual.c')
-rw-r--r--wiretap/visual.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/visual.c b/wiretap/visual.c
index 7504ffa1cf..dee9cbf550 100644
--- a/wiretap/visual.c
+++ b/wiretap/visual.c
@@ -819,7 +819,7 @@ static gboolean visual_dump(wtap_dumper *wdh, const struct wtap_pkthdr *phdr,
/* Update the table index and offset for the next frame. */
visual->index_table_index++;
- visual->next_offset += hdr_size + phdr->caplen;
+ visual->next_offset += (guint32) hdr_size + phdr->caplen;
return TRUE;
}