From 61e6a90d3193848fc07a024a0b0e4aaf644adc8a Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Sat, 4 Jun 2022 15:00:03 +0100 Subject: [PATCH] tidying --- src/src/exim.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/src/exim.c b/src/src/exim.c index 1a4b44945..fd01d1355 100644 --- a/src/src/exim.c +++ b/src/src/exim.c @@ -4065,7 +4065,7 @@ defined) */ { int old_pool = store_pool; #ifdef MEASURE_TIMING - struct timeval t0, diff; + struct timeval t0; (void)gettimeofday(&t0, NULL); #endif @@ -4697,7 +4697,7 @@ needed in transports so we lost the optimisation. */ { int old_pool = store_pool; #ifdef MEASURE_TIMING - struct timeval t0, diff; + struct timeval t0; (void)gettimeofday(&t0, NULL); #endif @@ -5091,7 +5091,7 @@ if (f.daemon_listen || f.inetd_wait_mode || queue_interval > 0) routines in it, so call even if tls_require_ciphers is unset */ { # ifdef MEASURE_TIMING - struct timeval t0, diff; + struct timeval t0; (void)gettimeofday(&t0, NULL); # endif if (!tls_dropprivs_validate_require_cipher(FALSE)) -- 2.30.2