diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/test_quota.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_quota.c b/src/test_quota.c index 855f300c3..74d1a6d3b 100644 --- a/src/test_quota.c +++ b/src/test_quota.c @@ -815,8 +815,8 @@ int sqlite3_quota_file(const char *zFilename){ SQLITE_OPEN_READONLY | SQLITE_OPEN_MAIN_DB, &outFlags); } if( rc==SQLITE_OK ){ - quotaFileSize(fd, &iSize); - quotaClose(fd); + fd->pMethods->xFileSize(fd, &iSize); + fd->pMethods->xClose(fd); }else if( rc==SQLITE_CANTOPEN ){ quotaGroup *pGroup; quotaFile *pFile; |