diff options
author | Ron Yorston <rmy@pobox.com> | 2019-03-16 10:27:56 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2019-03-16 10:27:56 +0000 |
commit | 7f8036d3f0f599a10090c22b73126b7ec6ee3727 (patch) | |
tree | 04981c52c50a29c78168f8783dec0d4a8a5375f1 /util-linux | |
parent | 9d1ff6a7bd9f598e3d6fe7f9002204044a0c42fa (diff) | |
parent | 2bbd1e1e8ababc480ff5d373847ab98ba0cc23dd (diff) | |
download | busybox-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.c | 2 |
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 */ |