From 2cde0c2c5ce14c0dab5515e779a0863077c8ac04 Mon Sep 17 00:00:00 2001 From: WrinklyNinja Date: Mon, 29 Jul 2013 09:41:24 +0100 Subject: [PATCH] Updated API internally to reflect recent changes. --- src/api/api.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/api/api.cpp b/src/api/api.cpp index dd6dc142..618fdc26 100644 --- a/src/api/api.cpp +++ b/src/api/api.cpp @@ -251,7 +251,8 @@ BOSS_API unsigned int boss_load_lists (boss_db db, const char * const masterlist temp = tempNode["plugins"].as< std::list >(); } else { boost::filesystem::path p(masterlistPath); - Loadv2Masterlist(p, temp); + std::list filler; + Loadv2Masterlist(p, temp, filler); } } catch (YAML::Exception& e) { extMessageStr = e.what();