From ed121ec4dc0a7af0cf995298fb2010e12b84b031 Mon Sep 17 00:00:00 2001 From: Tomek Mrugalski Date: Thu, 21 Aug 2014 13:53:30 +0200 Subject: [PATCH] [master] compilation fix for #3477 (#3531) --- src/lib/dhcpsrv/configuration.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/dhcpsrv/configuration.cc b/src/lib/dhcpsrv/configuration.cc index 80289e6ac3..49d1c263d9 100644 --- a/src/lib/dhcpsrv/configuration.cc +++ b/src/lib/dhcpsrv/configuration.cc @@ -48,7 +48,7 @@ Configuration::getConfigSummary(const uint32_t selection) const { s << "DDNS: " << (ddns_enabled ? "enabled" : "disabled") << "; "; } - if (s.tellp() == 0) { + if (s.tellp() == static_cast(0)) { s << "no config details available"; } -- 2.47.2