diff options
author | Christian Pointner <equinox@anytun.org> | 2010-02-16 22:09:15 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2010-02-16 22:09:15 +0000 |
commit | cf2075ec2f89789972058ec96a5d4f1bbb1f0c53 (patch) | |
tree | 85ec4c4c1d27aaf290850b5fa0ce56da808b8b6e /src/win32/sysExec.hpp | |
parent | fixed build of anytun-controld (diff) |
malloc/free vs new at posix sysexec
Diffstat (limited to 'src/win32/sysExec.hpp')
-rw-r--r-- | src/win32/sysExec.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32/sysExec.hpp b/src/win32/sysExec.hpp index eba26f4..ed5be01 100644 --- a/src/win32/sysExec.hpp +++ b/src/win32/sysExec.hpp @@ -67,7 +67,7 @@ bool endsWith(std::string const& string, std::string const& suffix) { return string.find(suffix, string.size() - suffix.size()) != std::string::npos;
}
-void SysExec::doExec(StringVector const& args, StringList const& env)
+void SysExec::doExec(StringVector args, StringList env)
{
std::vector<char> arguments;
|