summaryrefslogtreecommitdiffstats
path: root/src/state.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/state.cc')
-rw-r--r--src/state.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/state.cc b/src/state.cc
index b0da350..0fb696e 100644
--- a/src/state.cc
+++ b/src/state.cc
@@ -203,7 +203,9 @@ void State::Dump() {
for (map<string, Pool*>::const_iterator it = pools_.begin();
it != pools_.end(); ++it)
{
- it->second->Dump();
+ if (!it->second->name().empty()) {
+ it->second->Dump();
+ }
}
}
}