diff options
Diffstat (limited to 'src/test_autoext.c')
-rw-r--r-- | src/test_autoext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_autoext.c b/src/test_autoext.c index 4a5a5caa0..a5236d239 100644 --- a/src/test_autoext.c +++ b/src/test_autoext.c @@ -208,13 +208,13 @@ int Sqlitetest_autoext_Init(Tcl_Interp *interp){ autoExtCubeObjCmd, 0, 0); Tcl_CreateObjCommand(interp, "sqlite3_auto_extension_broken", autoExtBrokenObjCmd, 0, 0); -#endif Tcl_CreateObjCommand(interp, "sqlite3_cancel_auto_extension_sqr", cancelAutoExtSqrObjCmd, 0, 0); Tcl_CreateObjCommand(interp, "sqlite3_cancel_auto_extension_cube", cancelAutoExtCubeObjCmd, 0, 0); Tcl_CreateObjCommand(interp, "sqlite3_cancel_auto_extension_broken", cancelAutoExtBrokenObjCmd, 0, 0); +#endif Tcl_CreateObjCommand(interp, "sqlite3_reset_auto_extension", resetAutoExtObjCmd, 0, 0); return TCL_OK; |