diff options
author | drh <drh@noemail.net> | 2010-07-14 20:51:34 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-07-14 20:51:34 +0000 |
commit | f65bc9119c8d02a9deefc19e891da0d5ee88bc2d (patch) | |
tree | f09a6ad359e8d40b4b54b51aca607225e6263e7f /src | |
parent | a7d2db175b05eacc623f8240d1c29335adcf92a9 (diff) | |
download | sqlite-f65bc9119c8d02a9deefc19e891da0d5ee88bc2d.tar.gz sqlite-f65bc9119c8d02a9deefc19e891da0d5ee88bc2d.zip |
Fix a typo in a comment in os_unix.c.
FossilOrigin-Name: e1e7312580a8b19825b0c52fa8af6c9382f99f22
Diffstat (limited to 'src')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index af58bd9ba..f2b7555fe 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -4304,7 +4304,7 @@ static UnixUnusedFd *findReusableFd(const char *zPath, int flags){ /* ** This function is called by unixOpen() to determine the unix permissions -** to create new files with. If no error occurs, then SQLite is returned +** to create new files with. If no error occurs, then SQLITE_OK is returned ** and a value suitable for passing as the third argument to open(2) is ** written to *pMode. If an IO error occurs, an SQLite error code is ** returned and the value of *pMode is not modified. |