Fix OS_Unix::set_environment

This commit is contained in:
Ignacio Etcheverry 2019-02-04 00:44:37 +01:00
parent 919fa75803
commit 9bd9d21358
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ String OS_Unix::get_environment(const String &p_var) const {
bool OS_Unix::set_environment(const String &p_var, const String &p_value) const {
return setenv(p_var.utf8().get_data(), p_var.utf8().get_data(), /* overwrite: */ true) == 0;
return setenv(p_var.utf8().get_data(), p_value.utf8().get_data(), /* overwrite: */ true) == 0;
}
int OS_Unix::get_processor_count() const {