aboutsummaryrefslogtreecommitdiff
path: root/src/wal.c
diff options
context:
space:
mode:
authordrh <>2023-07-10 18:16:49 +0000
committerdrh <>2023-07-10 18:16:49 +0000
commit5d3cc0c09b1f64efd0bebde0ffc85eea571c00dd (patch)
tree5d4ef2c557a6ec857404a72a49bfdb0b8d1da630 /src/wal.c
parentcc9380f68d3b9ec9dbfa93ac0b69fb28e40151f6 (diff)
downloadsqlite-5d3cc0c09b1f64efd0bebde0ffc85eea571c00dd.tar.gz
sqlite-5d3cc0c09b1f64efd0bebde0ffc85eea571c00dd.zip
Fix a warning. Unclear yet if the code is correct this way or not.
FossilOrigin-Name: 2df4fd76ef48bb63389df8d783059af6b8f2cbb2c11d07953b408e71f50b625b
Diffstat (limited to 'src/wal.c')
-rw-r--r--src/wal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wal.c b/src/wal.c
index 1e1382129..0cb4f0344 100644
--- a/src/wal.c
+++ b/src/wal.c
@@ -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, (const ULONG*)aArg);
+ RaiseException(EXCEPTION_IN_PAGE_ERROR, 0, 3, (const ULONG_PTR*)aArg);
}
}