aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/SimpleDatabasePlugin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/db/SimpleDatabasePlugin.cxx')
-rw-r--r--src/db/SimpleDatabasePlugin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/SimpleDatabasePlugin.cxx b/src/db/SimpleDatabasePlugin.cxx
index 8f2571878..6f30e4b61 100644
--- a/src/db/SimpleDatabasePlugin.cxx
+++ b/src/db/SimpleDatabasePlugin.cxx
@@ -145,7 +145,7 @@ SimpleDatabase::Load(Error &error)
return false;
}
- if (!db_load_internal(file, root, error))
+ if (!db_load_internal(file, *root, error))
return false;
struct stat st;
@@ -300,7 +300,7 @@ SimpleDatabase::Save(Error &error)
return false;
}
- db_save_internal(fp, root);
+ db_save_internal(fp, *root);
if (ferror(fp)) {
error.SetErrno("Failed to write to database file");