aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/k12.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-21 02:47:53 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-21 02:47:53 +0000
commit4bee37672257da89eae7ebd1fb26a5a9e0dc4eb9 (patch)
tree392d885fa76445796c1fece24475bfa9e8e85943 /wiretap/k12.c
parent5e40053d8f6b1644d3f2386eef81ab812666f31d (diff)
fix another warning
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21079 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wiretap/k12.c')
-rw-r--r--wiretap/k12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/k12.c b/wiretap/k12.c
index bce0f1a809..dd6c34770a 100644
--- a/wiretap/k12.c
+++ b/wiretap/k12.c
@@ -208,7 +208,7 @@ static gint get_record(guint8** bufferp, FILE* fh, gint64 file_offset) {
guint8* writep;
/* where the next unknown 0x10 bytes are stuffed to the file */
- gint junky_offset = 0x2000 - (gint) ( (file_offset - 0x200) % 0x2000 );
+ guint junky_offset = 0x2000 - (gint) ( (file_offset - 0x200) % 0x2000 );
K12_DBG(6,("get_record: ENTER: junky_offset=%lld, file_offset=%lld",junky_offset,file_offset));