aboutsummaryrefslogtreecommitdiff
path: root/examples/provider/file_config_store.cc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/provider/file_config_store.cc')
-rw-r--r--examples/provider/file_config_store.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/provider/file_config_store.cc b/examples/provider/file_config_store.cc
index a6c2e60..b215023 100644
--- a/examples/provider/file_config_store.cc
+++ b/examples/provider/file_config_store.cc
@@ -26,7 +26,7 @@ FileConfigStore::FileConfigStore(const std::string& model_id,
std::string FileConfigStore::GetPath(const std::string& name) const {
std::string path{kSettingsDir};
- path += path + "weave_settings_" + model_id_;
+ path += "weave_settings_" + model_id_;
if (!name.empty())
path += "_" + name;
return path + ".json";