v2.10 (build 973)

* Also fix an indentation warning from gcc 6.1
This commit is contained in:
Pete Batard 2016-07-20 10:42:53 +01:00
parent dcb0d561d5
commit b32c7149eb
4 changed files with 13 additions and 12 deletions

View file

@ -92,7 +92,7 @@ libfat_open(int (*readfunc) (intptr_t, void *, size_t, libfat_sector_t),
} else
goto barf; /* Impossibly many clusters */
minfatsize = (minfatsize + LIBFAT_SECTOR_SIZE - 1) >> LIBFAT_SECTOR_SHIFT;
minfatsize = (minfatsize + LIBFAT_SECTOR_SIZE - 1) >> LIBFAT_SECTOR_SHIFT;
if (minfatsize > fatsize)
goto barf; /* The FATs don't fit */