chiark / gitweb /
update Debian rules
[elogind.git] / extras / volume_id / lib / ufs.c
index d3960b1bec3754251651409faad9b5e278f739dd..8255b6e7912d5b4b2932235dfff311e2361aa3d6 100644 (file)
@@ -175,7 +175,7 @@ int volume_id_probe_ufs(struct volume_id *id, uint64_t off)
        struct ufs_super_block *ufs;
        int offsets[] = {0, 8, 64, 256, -1};
 
-       dbg("probing at offset 0x%llx", (unsigned long long) off);
+       info("probing at offset 0x%llx", (unsigned long long) off);
 
        for (i = 0; offsets[i] >= 0; i++) {     
                ufs = (struct ufs_super_block *) volume_id_get_buffer(id, off + (offsets[i] * 0x400), 0x800);