summaryrefslogtreecommitdiff
path: root/src/lib/state.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-01-09 16:29:21 +0100
committerCarl Hetherington <cth@carlh.net>2022-01-09 16:29:21 +0100
commit92b7d1cffbd0d457f8b4b23cc72937bcf8e5ed5e (patch)
treeb175db682422765468991702e8563bcd89713b70 /src/lib/state.cc
parent7392cb8383c9b857edad5f99eaf917ed70da237d (diff)
Tidying.
Diffstat (limited to 'src/lib/state.cc')
-rw-r--r--src/lib/state.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/state.cc b/src/lib/state.cc
index e22f9e0b9..b4d457158 100644
--- a/src/lib/state.cc
+++ b/src/lib/state.cc
@@ -79,7 +79,7 @@ State::read_path (string file)
boost::filesystem::path
State::write_path (string file)
{
- boost::filesystem::path p = config_path_or_override(config_versions.front());
+ auto p = config_path_or_override(config_versions.front());
boost::system::error_code ec;
boost::filesystem::create_directories (p, ec);
p /= file;