diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-09-10 11:22:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-09-10 11:22:23 +0200 |
commit | 6ea179f5c53c40c83d3cc023ad1e3ea36efaeed5 (patch) | |
tree | 601b8d094ba33d70cfabf67888adf48ab5309e65 /butl/process.cxx | |
parent | 43c591d58e3a2c77185f2f62348dc3f049764819 (diff) |
Cosmetic changes
Diffstat (limited to 'butl/process.cxx')
-rw-r--r-- | butl/process.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/butl/process.cxx b/butl/process.cxx index 194ea4e..3556fd9 100644 --- a/butl/process.cxx +++ b/butl/process.cxx @@ -25,7 +25,7 @@ namespace butl #ifndef _WIN32 process:: - process (const char* cwd, char const* args[], int in, int out, int err) + process (const char* cwd, char const* const args[], int in, int out, int err) { int out_fd[2] = {in, 0}; int in_ofd[2] = {0, out}; @@ -98,7 +98,8 @@ namespace butl } process:: - process (const char* cwd, char const* args[], process& in, int out, int err) + process (const char* cwd, char const* const args[], + process& in, int out, int err) : process (cwd, args, in.in_ofd, out, err) { assert (in.in_ofd != -1); // Should be a pipe. |