aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2019-03-16 10:27:56 +0000
committerRon Yorston <rmy@pobox.com>2019-03-16 10:27:56 +0000
commit7f8036d3f0f599a10090c22b73126b7ec6ee3727 (patch)
tree04981c52c50a29c78168f8783dec0d4a8a5375f1 /util-linux
parent9d1ff6a7bd9f598e3d6fe7f9002204044a0c42fa (diff)
parent2bbd1e1e8ababc480ff5d373847ab98ba0cc23dd (diff)
downloadbusybox-w32-7f8036d3f0f599a10090c22b73126b7ec6ee3727.tar.gz
busybox-w32-7f8036d3f0f599a10090c22b73126b7ec6ee3727.tar.bz2
busybox-w32-7f8036d3f0f599a10090c22b73126b7ec6ee3727.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'util-linux')
-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 */