aboutsummaryrefslogtreecommitdiff
path: root/bpkg/diagnostics
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-07 15:59:37 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-07 15:59:37 +0200
commitb1078fdb9fac747c19dbdacd24c2838aae7d9f6b (patch)
tree3452bab97d91b063ac3cac2cb3d84ae184c21858 /bpkg/diagnostics
parent8f94aaa067426a259f5396abdaf4945671799b5c (diff)
Implement cfg-create command
Diffstat (limited to 'bpkg/diagnostics')
-rw-r--r--bpkg/diagnostics6
1 files changed, 3 insertions, 3 deletions
diff --git a/bpkg/diagnostics b/bpkg/diagnostics
index b672282..2d7825a 100644
--- a/bpkg/diagnostics
+++ b/bpkg/diagnostics
@@ -35,10 +35,10 @@ namespace bpkg
// nameN arg arg ... nullptr nullptr
//
void
- print_process (diag_record&, const char* const* args, std::size_t n = 0);
+ print_process (diag_record&, const char* const args[], std::size_t n = 0);
void
- print_process (const char* const* args, std::size_t n = 0);
+ print_process (const char* const args[], std::size_t n = 0);
inline void
print_process (diag_record& dr, const cstrings& args)
@@ -55,7 +55,7 @@ namespace bpkg
// Verbosity level.
//
// 0 - disabled
- // 1 - general information messages
+ // 1 - high-level information messages
// 2 - underlying commands being executed
// 3 - information that could be helpful to the user
// 4 - information that could be helpful to the developer