diff options
author | stephan <stephan@noemail.net> | 2025-02-25 20:55:14 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-02-25 20:55:14 +0000 |
commit | 5d60f47001bf64b48abac68ed59621e528144ea4 (patch) | |
tree | cae063446f997fa82c6458a1c3f7ba7a80053adf /src/os_unix.c | |
parent | b8ec04ee0225d0f430536ac5f2b580a42addba6c (diff) | |
download | sqlite-5d60f47001bf64b48abac68ed59621e528144ea4.tar.gz sqlite-5d60f47001bf64b48abac68ed59621e528144ea4.zip |
Approximately 50 typo fixes, spanning the whole tree, contributed via [forum:006c8fa165083ac3|forum post 006c8fa165083ac3] and individually checked for correctness. Affects only code comments, docs, and a single line of debug output in a test app.
FossilOrigin-Name: af928818a030924060ee0762431dae0f16d53a62f4e1132754d052eb9c621ac2
Diffstat (limited to 'src/os_unix.c')
-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 78512cb06..1146545fe 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -6854,7 +6854,7 @@ static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){ /* Almost all modern unix systems support nanosleep(). But if you are ** compiling for one of the rare exceptions, you can use - ** -DHAVE_NANOSLEEP=0 (perhaps in conjuction with -DHAVE_USLEEP if + ** -DHAVE_NANOSLEEP=0 (perhaps in conjunction with -DHAVE_USLEEP if ** usleep() is available) in order to bypass the use of nanosleep() */ nanosleep(&sp, NULL); |