X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=extras%2Fvolume_id%2Flib%2Fsquashfs.c;h=99cc78aa415b6453e01e5c87f387bdd8719d2b58;hb=ac77e95948edc199cdd690de38f08e4d1e615840;hp=bdb1f16628b7345e8fa8d2109181ae9fdaeaf472;hpb=83cc6ab4760817509f1ed1ee429669e563f82caf;p=elogind.git diff --git a/extras/volume_id/lib/squashfs.c b/extras/volume_id/lib/squashfs.c index bdb1f1662..99cc78aa4 100644 --- a/extras/volume_id/lib/squashfs.c +++ b/extras/volume_id/lib/squashfs.c @@ -32,11 +32,11 @@ struct squashfs_super { uint32_t s_magic; } PACKED; -int volume_id_probe_squashfs(struct volume_id *id, uint64_t off) +int volume_id_probe_squashfs(struct volume_id *id, uint64_t off, uint64_t size) { struct squashfs_super *sqs; - dbg("probing at offset 0x%llx", (unsigned long long) off); + info("probing at offset 0x%llx", (unsigned long long) off); sqs = (struct squashfs_super *) volume_id_get_buffer(id, off + 0x200, 0x200); if (sqs == NULL)