Browse Source

[2377] constify

JINMEI Tatuya 12 years ago
parent
commit
44f835de6b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/master_loader.cc

+ 1 - 1
src/lib/dns/master_loader.cc

@@ -190,7 +190,7 @@ MasterLoader::~MasterLoader() {
 
 bool
 MasterLoader::loadIncremental(size_t count_limit) {
-    bool result = impl_->loadIncremental(count_limit);
+    const bool result = impl_->loadIncremental(count_limit);
     impl_->complete_ = result;
     return (result);
 }