diff --git a/common/params.cc b/common/params.cc index 7b2d4490ea..a64c2f133b 100644 --- a/common/params.cc +++ b/common/params.cc @@ -198,10 +198,8 @@ std::unordered_map keys = { Params::Params(const std::string &path) { - const char* env = std::getenv("OPENPILOT_PREFIX"); - prefix = env ? "/" + std::string(env) : "/d"; - std::string default_param_path = ensure_params_path(prefix); - params_path = path.empty() ? default_param_path : ensure_params_path(prefix, path); + prefix = "/" + util::getenv("OPENPILOT_PREFIX", "d"); + params_path = ensure_params_path(prefix, path); } std::vector Params::allKeys() const {