From 9814a674832cd9d4ae760318e5e538bf73974a84 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Mon, 27 Jun 2016 18:14:37 +0200 Subject: [PATCH] Fix struct pdns_timeval init in dnsgram --- pdns/dnsgram.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsgram.cc b/pdns/dnsgram.cc index 9b8ae7547..4831056e0 100644 --- a/pdns/dnsgram.cc +++ b/pdns/dnsgram.cc @@ -120,7 +120,7 @@ try /* we measure every 60 seconds, each interval with 10% less answers than questions is interesting */ /* report chunked */ - struct pdns_timeval lastreport={0, 0}; + struct pdns_timeval lastreport; typedef set > queries_t; queries_t questions, answers; -- 2.40.0