mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-20 18:05:21 -04:00
[misc] fix typos found by codespell
* 3rd party software was left out. * Most changes are in code comments, but one user-visible string has also been fixed. * Closes #1817
This commit is contained in:
parent
5030c1520d
commit
d840083a32
16 changed files with 28 additions and 28 deletions
|
@ -313,7 +313,7 @@ BOOL FormatExtFs(DWORD DriveIndex, uint64_t PartitionOffset, DWORD BlockSize, LP
|
|||
features.s_log_cluster_size = features.s_log_block_size;
|
||||
size /= BlockSize;
|
||||
|
||||
// ext2 and ext3 have a can only accomodate up to Blocksize * 2^32 sized volumes
|
||||
// ext2 and ext3 have a can only accommodate up to Blocksize * 2^32 sized volumes
|
||||
if (((strcmp(FSName, FileSystemLabel[FS_EXT2]) == 0) || (strcmp(FSName, FileSystemLabel[FS_EXT3]) == 0)) &&
|
||||
(size >= 0x100000000ULL)) {
|
||||
SET_EXT2_FORMAT_ERROR(ERROR_INVALID_VOLUME_SIZE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue