diff options
author | dan <dan@noemail.net> | 2012-08-31 14:23:16 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2012-08-31 14:23:16 +0000 |
commit | 7417cefec6ae414f0552efdf35dce6de158380a3 (patch) | |
tree | 0918d1f2362469c5d567e55b8f1867a5934f384a /src/os_unix.c | |
parent | 310874ca0083a96e8e4b5dfe767f538174adb3f1 (diff) | |
parent | 19038f1b79fb7d29225a5a444353846bc474a58b (diff) | |
download | sqlite-7417cefec6ae414f0552efdf35dce6de158380a3.tar.gz sqlite-7417cefec6ae414f0552efdf35dce6de158380a3.zip |
Update with latest trunk changes.
FossilOrigin-Name: 87995dc9409482f0a7a367bfc51d78ac0f63b8c3
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 4 |
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 |