aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-08-21 12:38:35 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-08-21 12:38:35 +0200
commitc8459c886bab3a68631491059d1a5f300a3861cb (patch)
treeaf1355b94ce2ba2d2d0331e92dcd2899924fc0a8
parent46fdd9eb995af4f704b283f0e6ce2c54d2e43d5c (diff)
Adjust to new butl::process interface
-rw-r--r--bpkg/utility4
-rw-r--r--bpkg/utility.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/bpkg/utility b/bpkg/utility
index 901fbbd..85cf1ca 100644
--- a/bpkg/utility
+++ b/bpkg/utility
@@ -79,10 +79,10 @@ namespace bpkg
// command lines).
//
void
- run (const char* const args[]);
+ run (const char* args[]);
inline void
- run (const cstrings& args) {run (args.data ());}
+ run (cstrings& args) {run (args.data ());}
// Run build2, mapping verbosity levels. If quiet is true, then run build2
// quiet if our verbosity level is 1. Common vars (cvars) are set on the
diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx
index a26ab3c..12ef220 100644
--- a/bpkg/utility.cxx
+++ b/bpkg/utility.cxx
@@ -168,7 +168,7 @@ namespace bpkg
}
void
- run (const char* const args[])
+ run (const char* args[])
{
if (verb >= 2)
print_process (args);