diff --git a/libpkg/data/config.cpp b/libpkg/data/config.cpp index 5a7525d..4dd474d 100644 --- a/libpkg/data/config.cpp +++ b/libpkg/data/config.cpp @@ -55,7 +55,7 @@ Config::~Config() void Config::initStorage(const char *path, std::uint32_t maxDbs) { assert(m_storage == nullptr); // only allow initializing storage once - m_storage = std::make_unique(path, maxDbs ? maxDbs : std::max(databases.size() * 10u + 15u, 60u)); + m_storage = std::make_unique(path, maxDbs ? maxDbs : std::max(databases.size() * 10u + 15u, 60u)); for (auto &db : databases) { db.initStorage(*m_storage); }