summaryrefslogtreecommitdiffstats
path: root/dump
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 02:56:47 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 02:56:47 +0000
commit8f27e144db176d10c149a9f8be9b3db1ede7b426 (patch)
tree2ad6088aecdb9e5666e989a2ef8fe3074a1659aa /dump
parentReleasing progress-linux version 1.2.2-1~progress7.99u1. (diff)
downloadexfatprogs-8f27e144db176d10c149a9f8be9b3db1ede7b426.tar.xz
exfatprogs-8f27e144db176d10c149a9f8be9b3db1ede7b426.zip
Merging upstream version 1.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dump')
-rw-r--r--dump/dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dump/dump.c b/dump/dump.c
index 8c96376..73a231a 100644
--- a/dump/dump.c
+++ b/dump/dump.c
@@ -131,8 +131,8 @@ static int exfat_show_ondisk_all_info(struct exfat_blk_dev *bd)
exfat_info("Cluster Count: \t\t\t\t%u\n", total_clus);
exfat_info("Root Cluster (cluster offset): \t\t%u\n", root_clu);
exfat_info("Volume Serial: \t\t\t\t0x%x\n", le32_to_cpu(pbsx->vol_serial));
- exfat_info("Sector Size Bits: \t\t\t%u\n", pbsx->sect_size_bits);
- exfat_info("Sector per Cluster bits: \t\t%u\n\n", pbsx->sect_per_clus_bits);
+ exfat_info("Bytes per Sector: \t\t\t%u\n", 1 << pbsx->sect_size_bits);
+ exfat_info("Sectors per Cluster: \t\t\t%u\n\n", 1 << pbsx->sect_per_clus_bits);
bd->cluster_size =
1 << (pbsx->sect_per_clus_bits + pbsx->sect_size_bits);