aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-frame.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2007-04-17 10:11:41 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2007-04-17 10:11:41 +0000
commitab97c31bb23019a5b145f24446ffaa4cadea60b4 (patch)
tree60e41440ef755c20727c8842309c24269994e549 /epan/dissectors/packet-frame.c
parent046cf4db3163365cc00b599b8c00c68d5c0d2eff (diff)
Fix warnings of the form "long long unsigned int format, guint64 arg": use
the PRI macros instead of %llu, etc. svn path=/trunk/; revision=21454
Diffstat (limited to 'epan/dissectors/packet-frame.c')
-rw-r--r--epan/dissectors/packet-frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-frame.c b/epan/dissectors/packet-frame.c
index b259aba8ea..c44911293e 100644
--- a/epan/dissectors/packet-frame.c
+++ b/epan/dissectors/packet-frame.c
@@ -268,7 +268,7 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
if (show_file_off) {
proto_tree_add_int64_format(fh_tree, hf_frame_file_off, tvb,
0, 0, pinfo->fd->file_off,
- "File Offset: %lld (0x%llx)",
+ "File Offset: %" PRId64 " (0x%" PRIx64 ")",
pinfo->fd->file_off, pinfo->fd->file_off);
}