aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/k12.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-03-21 02:47:53 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-03-21 02:47:53 +0000
commitf953c1b000faffd77e1d27d8a586e006a42a2d8b (patch)
tree392d885fa76445796c1fece24475bfa9e8e85943 /wiretap/k12.c
parent77ec324774760390a7ba9fc4e864ad0440a0ad2f (diff)
fix another warning
svn path=/trunk/; revision=21079
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));