chiark / gitweb /
delete all Makefiles and move udev source to udev/
[elogind.git] / extras / volume_id / lib / cramfs.c
index 100ebdec22fd06b5f78bbe117cdcc67bfbd66d18..9c7eaf61779ae4de792902b88af2d5e77a6614a1 100644 (file)
@@ -41,11 +41,11 @@ struct cramfs_super {
        uint8_t         name[16];
 } PACKED;
 
-int volume_id_probe_cramfs(struct volume_id *id, uint64_t off)
+int volume_id_probe_cramfs(struct volume_id *id, uint64_t off, uint64_t size)
 {
        struct cramfs_super *cs;
 
-       info("probing at offset 0x%llx", (unsigned long long) off);
+       info("probing at offset 0x%llx\n", (unsigned long long) off);
 
        cs = (struct cramfs_super *) volume_id_get_buffer(id, off, 0x200);
        if (cs == NULL)