diff options
-rw-r--r-- | build2/operation.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build2/operation.cxx b/build2/operation.cxx index 82b546c..698edbb 100644 --- a/build2/operation.cxx +++ b/build2/operation.cxx @@ -124,8 +124,8 @@ namespace build2 // Setup progress reporting if requested. // + string what; // Note: must outlive monitor_guard. scheduler::monitor_guard mg; - string what; if (ops.progress () || (stderr_term && verb >= 1 && verb <= 2 && !ops.no_progress ())) { @@ -273,8 +273,9 @@ namespace build2 // Setup progress reporting if requested. // + string what; // Note: must outlive monitor_guard. scheduler::monitor_guard mg; - string what; + if (ops.progress () || (stderr_term && verb == 1 && !ops.no_progress ())) { size_t init (target_count.load (memory_order_relaxed)); |