From 1f2f3703b72895ac080dbf0fa9c6896868a8ed51 Mon Sep 17 00:00:00 2001 From: bert hubert Date: Sun, 29 Nov 2015 17:42:42 +0100 Subject: [PATCH] we might have more DiffTimes --- pdns/dnsreplay.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsreplay.cc b/pdns/dnsreplay.cc index 6fcafd1ecf..2ace0421f8 100644 --- a/pdns/dnsreplay.cc +++ b/pdns/dnsreplay.cc @@ -203,7 +203,7 @@ unsigned int s_webetter, s_origbetter, s_norecursionavailable; unsigned int s_weunmatched, s_origunmatched; unsigned int s_wednserrors, s_origdnserrors, s_duplicates; -double DiffTime(const struct timeval& first, const struct timeval& second) +static double DiffTime(const struct timeval& first, const struct timeval& second) { int seconds=second.tv_sec - first.tv_sec; int useconds=second.tv_usec - first.tv_usec; -- 2.47.2