diff options
author | drh <> | 2023-07-10 18:16:49 +0000 |
---|---|---|
committer | drh <> | 2023-07-10 18:16:49 +0000 |
commit | 5d3cc0c09b1f64efd0bebde0ffc85eea571c00dd (patch) | |
tree | 5d4ef2c557a6ec857404a72a49bfdb0b8d1da630 /src/wal.c | |
parent | cc9380f68d3b9ec9dbfa93ac0b69fb28e40151f6 (diff) | |
download | sqlite-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.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, (const ULONG*)aArg); + RaiseException(EXCEPTION_IN_PAGE_ERROR, 0, 3, (const ULONG_PTR*)aArg); } } |