summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--disk-io.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/disk-io.c b/disk-io.c
index 7c52f12d..2fd3330f 100644
--- a/disk-io.c
+++ b/disk-io.c
@@ -1149,7 +1149,9 @@ int btrfs_scan_fs_devices(int fd, const char *path,
dev_size = seek_ret;
lseek(fd, 0, SEEK_SET);
if (sb_bytenr > dev_size) {
- fprintf(stderr, "Superblock bytenr is larger than device size\n");
+ error("superblock bytenr %llu is larger than device size %llu",
+ (unsigned long long)sb_bytenr,
+ (unsigned long long)dev_size);
return -EINVAL;
}