aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2025-06-03 10:18:54 +0000
committerdrh <>2025-06-03 10:18:54 +0000
commit140748f949aa52e1cc09eaa9d8e4fb685c426154 (patch)
treed625de4d66e0abe03bc7f8470ed4fa8ad266cb27 /src
parent2bd9f69d40dd240c4122c6d02f1ff447e7b5c098 (diff)
downloadsqlite-140748f949aa52e1cc09eaa9d8e4fb685c426154.tar.gz
sqlite-140748f949aa52e1cc09eaa9d8e4fb685c426154.zip
Fix harmless compiler warning introduced by the setlk-snapshot-fix merge.
FossilOrigin-Name: c1f20f89d9eb3e1dd1018c0e0efe5d3043a592f078e235ad04b960334c7186c2
Diffstat (limited to 'src')
-rw-r--r--src/wal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wal.c b/src/wal.c
index fc176988b..1fd5b201c 100644
--- a/src/wal.c
+++ b/src/wal.c
@@ -3076,7 +3076,7 @@ static int walTryBeginRead(Wal *pWal, int *pChanged, int useWal, int *pCnt){
** WAL_RETRY this routine will be called again and will probably be
** right on the second iteration.
*/
- walEnableBlocking(pWal);
+ (void)walEnableBlocking(pWal);
if( pWal->apWiData[0]==0 ){
/* This branch is taken when the xShmMap() method returns SQLITE_BUSY.
** We assume this is a transient condition, so return WAL_RETRY. The