diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-30 09:48:35 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-30 09:48:35 +0000 |
commit | 0f45b9c8e076483cd546d0bc9c606b73455295c6 (patch) | |
tree | d1c38ead3ab0691d6a8e8db2319de93e5bd8bb5a /Projects/Webserver/Lib/FATFs | |
parent | 2034141a7eb4d21a738f688b5e35a43793d17fbc (diff) | |
download | lufa-0f45b9c8e076483cd546d0bc9c606b73455295c6.tar.gz lufa-0f45b9c8e076483cd546d0bc9c606b73455295c6.tar.bz2 lufa-0f45b9c8e076483cd546d0bc9c606b73455295c6.zip |
More spell checking of all source files -- correct missed errors, switch to EN-GB spelling dictionary.
Diffstat (limited to 'Projects/Webserver/Lib/FATFs')
-rw-r--r-- | Projects/Webserver/Lib/FATFs/ff.c | 10 | ||||
-rw-r--r-- | Projects/Webserver/Lib/FATFs/ff.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Projects/Webserver/Lib/FATFs/ff.c b/Projects/Webserver/Lib/FATFs/ff.c index 1e53131a6..e4d523463 100644 --- a/Projects/Webserver/Lib/FATFs/ff.c +++ b/Projects/Webserver/Lib/FATFs/ff.c @@ -1321,7 +1321,7 @@ FRESULT create_name ( if (w != ' ' && w != '.') break; di--; } - if (!di) return FR_INVALID_NAME; /* Reject nul string */ + if (!di) return FR_INVALID_NAME; /* Reject null string */ lfn[di] = 0; /* LFN is created */ @@ -1458,7 +1458,7 @@ FRESULT create_name ( *path = &p[si]; /* Return pointer to the next segment */ c = (c <= ' ') ? NS_LAST : 0; /* Set last segment flag if end of path */ - if (!i) return FR_INVALID_NAME; /* Reject nul string */ + if (!i) return FR_INVALID_NAME; /* Reject null string */ if (sfn[0] == 0xE5) sfn[0] = 0x05; /* When first char collides with 0xE5, replace it with 0x05 */ if (ni == 8) b <<= 2; @@ -1582,7 +1582,7 @@ FRESULT follow_path ( /* FR_OK(0): successful, !=0: error code */ dj->sclust = 0; /* Start from the root dir */ #endif - if ((UINT)*path < ' ') { /* Nul path means the start directory itself */ + if ((UINT)*path < ' ') { /* Null path means the start directory itself */ res = dir_sdi(dj, 0); dj->dir = 0; @@ -1723,7 +1723,7 @@ FRESULT chk_mounted ( /* FR_OK(0): successful, !=0: any error occurred */ if (fmt == 3) return FR_DISK_ERR; if (fmt) return FR_NO_FILESYSTEM; /* No FAT volume is found */ - /* Following code initializes the file system object */ + /* Following code initialises the file system object */ if (LD_WORD(fs->win+BPB_BytsPerSec) != SS(fs)) /* (BPB_BytsPerSec must be equal to the physical sector size) */ return FR_NO_FILESYSTEM; @@ -3177,7 +3177,7 @@ FRESULT f_mkfs ( if (au == 0) au = 1; if (au > 128) au = 128; - /* Pre-compute number of clusters and FAT syb-type */ + /* Pre-compute number of clusters and FAT sub-type */ n_clst = n_vol / au; fmt = FS_FAT12; if (n_clst >= MIN_FAT16) fmt = FS_FAT16; diff --git a/Projects/Webserver/Lib/FATFs/ff.h b/Projects/Webserver/Lib/FATFs/ff.h index 603e31347..19b6a15b6 100644 --- a/Projects/Webserver/Lib/FATFs/ff.h +++ b/Projects/Webserver/Lib/FATFs/ff.h @@ -429,7 +429,7 @@ FRESULT f_sync (FIL*); /* Flush cached data of a writing file */ FRESULT f_unlink (const TCHAR*); /* Delete an existing file or directory */ FRESULT f_mkdir (const TCHAR*); /* Create a new directory */ FRESULT f_chmod (const TCHAR*, BYTE, BYTE); /* Change attribute of the file/dir */ -FRESULT f_utime (const TCHAR*, const FILINFO*); /* Change timestamp of the file/dir */ +FRESULT f_utime (const TCHAR*, const FILINFO*); /* Change time-stamp of the file/dir */ FRESULT f_rename (const TCHAR*, const TCHAR*); /* Rename/Move a file or directory */ #endif #if _USE_FORWARD |