aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2021-10-06 10:36:56 +0000
committerdrh <>2021-10-06 10:36:56 +0000
commit16a8f28e492507523c6b0b9d0bc0d9fd43c253a7 (patch)
tree534c8658765104e99827ee0fce996f20b7b629eb /src
parent3768f175cc6e5940c37b3078f21acd36815bac28 (diff)
downloadsqlite-16a8f28e492507523c6b0b9d0bc0d9fd43c253a7.tar.gz
sqlite-16a8f28e492507523c6b0b9d0bc0d9fd43c253a7.zip
Fix a macro typo introduced by [5da112c02f9e8d0b] that prevented coverage
tests from working. FossilOrigin-Name: 566e6974892ebd3d3de8d77b24655257a5efe14434c553e1a25fc680b201b336
Diffstat (limited to 'src')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index d941de07a..de3e6e97e 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -473,7 +473,7 @@
** Disable ALWAYS() and NEVER() (make them pass-throughs) for coverage
** and mutation testing
*/
-#if defined(SQLITE_COVERATE_TEST) || defined(SQLITE_MUTATION_TEST)
+#if defined(SQLITE_COVERAGE_TEST) || defined(SQLITE_MUTATION_TEST)
# define SQLITE_OMIT_AUXILIARY_SAFETY_CHECKS 1
#endif