diff options
-rw-r--r-- | bpkg/utility | 4 | ||||
-rw-r--r-- | 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); |