From f96a40b452c59178c88104382239f72c340af55d Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Sun, 20 Oct 2013 21:50:32 +0200 Subject: [PATCH] Fix a warning during compilation --- pdns/responsestats.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/responsestats.cc b/pdns/responsestats.cc index 92bf8899d0..9e47b9db62 100644 --- a/pdns/responsestats.cc +++ b/pdns/responsestats.cc @@ -35,7 +35,7 @@ map ResponseStats::getQTypeResponseCounts() { map ret; uint64_t count; - for(int i = 0 ; i < d_qtypecounters.size() ; ++i) { + for(unsigned int i = 0 ; i < d_qtypecounters.size() ; ++i) { count= d_qtypecounters[i]; if(count) ret[i]=count; -- 2.47.2