diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-11-22 08:24:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-11-22 08:24:16 +0200 |
commit | c9ba28c2ef9a8075c35cc3df4e176e9ec72a7a61 (patch) | |
tree | b75b8f49f460b42931e017753deaeed5ffb10c71 | |
parent | b4ae4f68d1d9456dc9bb6b9e1a31f8390605f882 (diff) |
Streamline skip count diagnostics
-rw-r--r-- | build2/operation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/operation.cxx b/build2/operation.cxx index ea1e06e..eb96559 100644 --- a/build2/operation.cxx +++ b/build2/operation.cxx @@ -333,7 +333,7 @@ namespace build2 { if (size_t s = skip_count.load (memory_order_relaxed)) { - text << "skipped " << diag_doing (a) << ' ' << s << " target(s)"; + text << "skipped " << diag_doing (a) << ' ' << s << " targets"; } } |