From: Martin v. Löwis Date: Fri, 13 Jun 2008 07:48:19 +0000 (+0000) Subject: Make print_delta static. X-Git-Tag: v3.0b1~54 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c95155bd153e4b9434a42ae434f6f6221c042a2;p=thirdparty%2FPython%2Fcpython.git Make print_delta static. --- diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 3dd2cdbf515f..651fb2066397 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;