aboutsummaryrefslogtreecommitdiff
path: root/src/os.c
diff options
context:
space:
mode:
authordrh <>2023-06-22 13:01:02 +0000
committerdrh <>2023-06-22 13:01:02 +0000
commitd6c671e626640af933c0a1e73555eaa935ab3a31 (patch)
tree4562debcda0e27a213c6a05c5a4722128ba20bfe /src/os.c
parentb3d7f1c2db60a94639d0f5be204f947d4e56b475 (diff)
parentd4170ac0ebca587585a6a9be6717852564481b49 (diff)
downloadsqlite-d6c671e626640af933c0a1e73555eaa935ab3a31.tar.gz
sqlite-d6c671e626640af933c0a1e73555eaa935ab3a31.zip
Merge recent trunk enhancements into the octet_length branch.
FossilOrigin-Name: d35c214811aac7dec0000ca2aa77231f74a7963dd0c53cf25a65ade5ef0f8dc0
Diffstat (limited to 'src/os.c')
-rw-r--r--src/os.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os.c b/src/os.c
index e2914e03c..a9fc732e7 100644
--- a/src/os.c
+++ b/src/os.c
@@ -137,7 +137,7 @@ int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){
/* Faults are not injected into COMMIT_PHASETWO because, assuming SQLite
** is using a regular VFS, it is called after the corresponding
** transaction has been committed. Injecting a fault at this point
- ** confuses the test scripts - the COMMIT comand returns SQLITE_NOMEM
+ ** confuses the test scripts - the COMMIT command returns SQLITE_NOMEM
** but the transaction is committed anyway.
**
** The core must call OsFileControl() though, not OsFileControlHint(),
@@ -279,7 +279,7 @@ int sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){
}else{
return pVfs->xRandomness(pVfs, nByte, zBufOut);
}
-
+
}
int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){
return pVfs->xSleep(pVfs, nMicro);