aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/k12.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2008-01-24 21:57:13 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2008-01-24 21:57:13 +0000
commit75849c12f17df1e7120b297aa29913a1ed7d8113 (patch)
tree36e453df13ce7d04d97b2f85fdbc61432e4eb5e0 /wiretap/k12.c
parentd5d2e97b4746d7f512f84a9b4056fdb69fed3472 (diff)
s/%ll/%" G_GINT64_MODIFIER "/g
svn path=/trunk/; revision=24181
Diffstat (limited to 'wiretap/k12.c')
-rw-r--r--wiretap/k12.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/k12.c b/wiretap/k12.c
index 649c251603..5eb21d5721 100644
--- a/wiretap/k12.c
+++ b/wiretap/k12.c
@@ -219,7 +219,7 @@ static gint get_record(guint8** bufferp, FILE* fh, gint64 file_offset) {
/* where the next unknown 0x10 bytes are stuffed to the file */
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));
+ K12_DBG(6,("get_record: ENTER: junky_offset=%" G_GINT64_MODIFIER "d, file_offset=%" G_GINT64_MODIFIER "d",junky_offset,file_offset));
/* no buffer is given, lets create it */
if (buffer == NULL) {
@@ -268,7 +268,7 @@ static gint get_record(guint8** bufferp, FILE* fh, gint64 file_offset) {
left -= 4;
do {
- K12_DBG(6,("get_record: looping left=%d junky_offset=%lld",left,junky_offset));
+ K12_DBG(6,("get_record: looping left=%d junky_offset=%" G_GINT64_MODIFIER "d",left,junky_offset));
if (junky_offset > left) {
read += last_read = file_read(writep,1, left, fh);