diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2019-02-04 01:03:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-04 01:03:10 +0100 |
commit | 16d402147b9057c9f7d43ef9b46eb8654e5483cc (patch) | |
tree | 9a78f340d4b4246ad8cab712a9472d67192914bf /drivers/unix/os_unix.cpp | |
parent | 919fa75803177d0dc8f03c16b6be1360140145e1 (diff) | |
parent | 9bd9d21358703fd9ee2ab3e0fe32b2425a1a6255 (diff) | |
download | redot-engine-16d402147b9057c9f7d43ef9b46eb8654e5483cc.tar.gz |
Merge pull request #25593 from neikeq/whatwasithinking
Fix OS_Unix::set_environment
Diffstat (limited to 'drivers/unix/os_unix.cpp')
-rw-r--r-- | drivers/unix/os_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index 39a8fbc153..e3e2e10e82 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -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 { |