aboutsummaryrefslogtreecommitdiff
path: root/src/test4.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test4.c')
-rw-r--r--src/test4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test4.c b/src/test4.c
index 83c56d3d7..a6375c7cc 100644
--- a/src/test4.c
+++ b/src/test4.c
@@ -20,7 +20,7 @@
#include <sched.h>
#include <ctype.h>
-extern const char *sqlite3TestErrorName(int rc);
+extern const char *sqlite3ErrName(int);
/*
** Each thread is controlled by an instance of the following
@@ -374,7 +374,7 @@ static int tcl_thread_result(
return TCL_ERROR;
}
thread_wait(&threadset[i]);
- zName = sqlite3TestErrorName(threadset[i].rc);
+ zName = sqlite3ErrName(threadset[i].rc);
Tcl_AppendResult(interp, zName, 0);
return TCL_OK;
}