aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/appendvfs.c
diff options
context:
space:
mode:
authorlarrybr <larrybr@noemail.net>2021-03-16 07:06:29 +0000
committerlarrybr <larrybr@noemail.net>2021-03-16 07:06:29 +0000
commit67d4bbf6c1d75e56d66deb7f34d1521b49b307c1 (patch)
treeccfe1b3e152c61432aaf6b1d6c3a82c8f42b79da /ext/misc/appendvfs.c
parentb0f23784f6048714f13a3c8a6bdf0887dc01f4a5 (diff)
downloadsqlite-67d4bbf6c1d75e56d66deb7f34d1521b49b307c1.tar.gz
sqlite-67d4bbf6c1d75e56d66deb7f34d1521b49b307c1.zip
Fix assert typo.
FossilOrigin-Name: 3aedf818c1cfc88ee1103abd8b20e787f6be1bcc4c9350963f0cd52f5ac04154
Diffstat (limited to 'ext/misc/appendvfs.c')
-rw-r--r--ext/misc/appendvfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/appendvfs.c b/ext/misc/appendvfs.c
index 970bb282c..477e1eafc 100644
--- a/ext/misc/appendvfs.c
+++ b/ext/misc/appendvfs.c
@@ -221,7 +221,7 @@ static const sqlite3_io_methods apnd_io_methods = {
** Close an apnd-file.
*/
static int apndClose(sqlite3_file *pFile){
- assert((ApndFile *pFile)pFile == ORIGFILE(pFile));
+ assert((ApndFile*)pFile == ORIGFILE(pFile));
pFile = ORIGFILE(pFile);
return pFile->pMethods->xClose(pFile);
}