diff options
author | drh <> | 2025-06-03 10:18:54 +0000 |
---|---|---|
committer | drh <> | 2025-06-03 10:18:54 +0000 |
commit | 140748f949aa52e1cc09eaa9d8e4fb685c426154 (patch) | |
tree | d625de4d66e0abe03bc7f8470ed4fa8ad266cb27 /src | |
parent | 2bd9f69d40dd240c4122c6d02f1ff447e7b5c098 (diff) | |
download | sqlite-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |