Fixed usages of path_list_separator

This commit is contained in:
Elad Solomon 2022-09-08 19:57:08 +03:00 committed by Tomer Lev
parent 4043b67e0b
commit dfd6cbe6b4
3 changed files with 6 additions and 6 deletions

View file

@ -63,7 +63,7 @@ void Manager::SearchDynamicPlugins(const std::string& dir)
std::stringstream s(dir);
std::string d;
while ( std::getline(s, d, path_list_separator) )
while ( std::getline(s, d, path_list_separator[0]) )
SearchDynamicPlugins(d);
return;