summaryrefslogtreecommitdiff
path: root/extras/volume_id/lib/udf.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2008-10-03 18:24:04 +0200
committerKay Sievers <kay.sievers@vrfy.org>2008-10-03 18:24:04 +0200
commit0565a00a4cfdabd325bf2e117620d5f15dd46cda (patch)
tree18501a09ee2253777b85ff59451419b83aca96e4 /extras/volume_id/lib/udf.c
parent99370c21521bca6e747f6be209e5c28f89de9838 (diff)
volume_id: use PRIu64i, PRIx64 macros
Diffstat (limited to 'extras/volume_id/lib/udf.c')
-rw-r--r--extras/volume_id/lib/udf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/volume_id/lib/udf.c b/extras/volume_id/lib/udf.c
index bf0833df80..aed0d76b52 100644
--- a/extras/volume_id/lib/udf.c
+++ b/extras/volume_id/lib/udf.c
@@ -77,7 +77,7 @@ int volume_id_probe_udf(struct volume_id *id, uint64_t off, uint64_t size)
unsigned int loc;
unsigned int clen;
- info("probing at offset 0x%llx\n", (unsigned long long) off);
+ info("probing at offset 0x%" PRIx64 "\n", off);
vsd = (struct volume_structure_descriptor *) volume_id_get_buffer(id, off + UDF_VSD_OFFSET, 0x200);
if (vsd == NULL)