aboutsummaryrefslogtreecommitdiff
path: root/bpkg/diagnostics
diff options
context:
space:
mode:
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