chiark / gitweb /
volume_id: LVM - add uuid
[elogind.git] / extras / volume_id / lib / udf.c
index d7497ec51b8e06d1513acfeec667b5a8c159f5c6..ac2f40a9e88429b0f9af567c2a7958da49280916 100644 (file)
@@ -61,7 +61,7 @@ struct volume_structure_descriptor {
 
 #define UDF_VSD_OFFSET                 0x8000
 
-int volume_id_probe_udf(struct volume_id *id, uint64_t off)
+int volume_id_probe_udf(struct volume_id *id, uint64_t off, uint64_t size)
 {
        struct volume_descriptor *vd;
        struct volume_structure_descriptor *vsd;
@@ -72,7 +72,7 @@ int volume_id_probe_udf(struct volume_id *id, uint64_t off)
        unsigned int loc;
        unsigned int clen;
 
-       dbg("probing at offset 0x%llx", (unsigned long long) off);
+       info("probing at offset 0x%llx", (unsigned long long) off);
 
        vsd = (struct volume_structure_descriptor *) volume_id_get_buffer(id, off + UDF_VSD_OFFSET, 0x200);
        if (vsd == NULL)