aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2012-08-25 10:01:29 +0000
committermistachkin <mistachkin@noemail.net>2012-08-25 10:01:29 +0000
commitd5578433ff270995a4bfb4085ef9cef5c1ce9ac8 (patch)
treecf2e1ccea1e3ef3fe3ce969066ac913a703457b2 /src/os_unix.c
parentb0367fb8b0044bb99e683cf47d3dc1b4e51a29fc (diff)
downloadsqlite-d5578433ff270995a4bfb4085ef9cef5c1ce9ac8.tar.gz
sqlite-d5578433ff270995a4bfb4085ef9cef5c1ce9ac8.zip
Fix all known instances of 'repeated the' style typos in comments. No changes to code.
FossilOrigin-Name: 9b19b847533f944f289d93dcdba29c0d67bf251c
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index a0326c963..c0df66e8e 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -1052,7 +1052,7 @@ static unixInodeInfo *inodeList = 0;
** The first argument passed to the macro should be the error code that
** will be returned to SQLite (e.g. SQLITE_IOERR_DELETE, SQLITE_CANTOPEN).
** The two subsequent arguments should be the name of the OS function that
-** failed (e.g. "unlink", "open") and the the associated file-system path,
+** failed (e.g. "unlink", "open") and the associated file-system path,
** if any.
*/
#define unixLogError(a,b,c) unixLogErrorAtLine(a,b,c,__LINE__)
@@ -1075,7 +1075,7 @@ static int unixLogErrorAtLine(
zErr = aErr;
/* If STRERROR_R_CHAR_P (set by autoconf scripts) or __USE_GNU is defined,
- ** assume that the system provides the the GNU version of strerror_r() that
+ ** assume that the system provides the GNU version of strerror_r() that
** returns a pointer to a buffer containing the error message. That pointer
** may point to aErr[], or it may point to some static storage somewhere.
** Otherwise, assume that the system provides the POSIX version of