diff options
author | drh <> | 2023-07-10 18:05:23 +0000 |
---|---|---|
committer | drh <> | 2023-07-10 18:05:23 +0000 |
commit | cc9380f68d3b9ec9dbfa93ac0b69fb28e40151f6 (patch) | |
tree | 044c5f033955d8815f843a09530fb76e67856818 /src/wal.c | |
parent | ff96718b529f98e0f13133f1dcd4f0262a2590d5 (diff) | |
parent | 4c40b7b819bed28a63a04eed32882ee46bc826fc (diff) | |
download | sqlite-cc9380f68d3b9ec9dbfa93ac0b69fb28e40151f6.tar.gz sqlite-cc9380f68d3b9ec9dbfa93ac0b69fb28e40151f6.zip |
Merge the latest trunk enhancements into the wal-shm-exceptions branch.
FossilOrigin-Name: f655d08d019bab0c578886e91ca24fd956d1b3dea9b9c9104812b3cf62e5e556
Diffstat (limited to 'src/wal.c')
-rw-r--r-- | src/wal.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -666,7 +666,7 @@ static void sehInjectFault(Wal *pWal){ aArg[0] = 0; aArg[1] = 0; aArg[2] = (ULONG)res; - RaiseException(EXCEPTION_IN_PAGE_ERROR, 0, 3, aArg); + RaiseException(EXCEPTION_IN_PAGE_ERROR, 0, 3, (const ULONG*)aArg); } } |