From c8459c886bab3a68631491059d1a5f300a3861cb Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 21 Aug 2016 12:38:35 +0200 Subject: Adjust to new butl::process interface --- bpkg/utility | 4 ++-- bpkg/utility.cxx | 2 +- 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); -- cgit v1.1