diff options
Diffstat (limited to 'extras/volume_id/lib/ufs.c')
-rw-r--r-- | extras/volume_id/lib/ufs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/volume_id/lib/ufs.c b/extras/volume_id/lib/ufs.c index d3960b1bec..8255b6e791 100644 --- a/extras/volume_id/lib/ufs.c +++ b/extras/volume_id/lib/ufs.c @@ -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); |