From 1c95155bd153e4b9434a42ae434f6f6221c042a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Fri, 13 Jun 2008 07:48:19 +0000 Subject: Make print_delta static. --- Modules/_testcapimodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12