summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-06-06 22:13:24 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-06-07 09:50:24 +0200
commit777943d3194383ab5492b285ae83dc3e92328514 (patch)
tree3a98819d239df0f943056f9196170351385a34f3 /config
parent0b37a1b9eecf9b38310bde4a11c01a7962234450 (diff)
Do not provide unnecessary fastos/mutex.h by default.
Diffstat (limited to 'config')
-rw-r--r--config/src/vespa/config/set/configsetsource.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/config/src/vespa/config/set/configsetsource.cpp b/config/src/vespa/config/set/configsetsource.cpp
index c62452a6415..75dcd3d3f65 100644
--- a/config/src/vespa/config/set/configsetsource.cpp
+++ b/config/src/vespa/config/set/configsetsource.cpp
@@ -2,9 +2,8 @@
#include "configsetsource.h"
#include <vespa/config/print/asciiconfigwriter.h>
-#include <vespa/config/common/misc.h>
#include <vespa/config/common/exceptions.h>
-#include <vespa/vespalib/stllike/asciistream.h>
+
#include <vespa/log/log.h>
LOG_SETUP(".config.set.configsetsource");
@@ -48,7 +47,7 @@ ConfigSetSource::getConfig()
void
ConfigSetSource::reload(int64_t generation)
{
- LOG(debug, "Running update with generation(%" PRId64 ")", generation);
+ LOG(debug, "Running update with generation(%zd)", generation);
_generation = generation;
}