1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix a warning. Unclear yet if the code is correct this way or not.

FossilOrigin-Name: 2df4fd76ef48bb63389df8d783059af6b8f2cbb2c11d07953b408e71f50b625b
This commit is contained in:
drh
2023-07-10 18:16:49 +00:00
parent cc9380f68d
commit 5d3cc0c09b
3 changed files with 8 additions and 8 deletions

View File

@@ -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);
}
}