aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util-linux/volume_id/fat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/volume_id/fat.c b/util-linux/volume_id/fat.c
index b24ed098e..fe3750880 100644
--- a/util-linux/volume_id/fat.c
+++ b/util-linux/volume_id/fat.c
@@ -247,7 +247,7 @@ int FAST_FUNC volume_id_probe_vfat(struct volume_id *id /*,uint64_t fat_partitio
247// strcpy(id->type_version, "FAT32"); 247// strcpy(id->type_version, "FAT32");
248// goto fat32; 248// goto fat32;
249// } 249// }
250 if (cluster_count >= FAT16_MAX) 250 if (cluster_count > FAT16_MAX)
251 goto fat32; 251 goto fat32;
252 252
253 /* the label may be an attribute in the root directory */ 253 /* the label may be an attribute in the root directory */