summaryrefslogtreecommitdiff
path: root/src/win32/sysExec.hpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2010-02-16 22:09:15 +0000
committerChristian Pointner <equinox@anytun.org>2010-02-16 22:09:15 +0000
commitcf2075ec2f89789972058ec96a5d4f1bbb1f0c53 (patch)
tree85ec4c4c1d27aaf290850b5fa0ce56da808b8b6e /src/win32/sysExec.hpp
parentfixed 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.hpp2
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;