summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Modules/_testcapimodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index 3dd2cdb..651fb20 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -822,7 +822,7 @@ test_with_docstring(PyObject *self)
#ifdef HAVE_GETTIMEOFDAY
/* Profiling of integer performance */
-void print_delta(int test, struct timeval *s, struct timeval *e)
+static void print_delta(int test, struct timeval *s, struct timeval *e)
{
e->tv_sec -= s->tv_sec;
e->tv_usec -= s->tv_usec;