diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceStorm/InstrumentationI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceStorm/InstrumentationI.cpp b/cpp/src/IceStorm/InstrumentationI.cpp index aa4c8478c9a..0fcd067b585 100644 --- a/cpp/src/IceStorm/InstrumentationI.cpp +++ b/cpp/src/IceStorm/InstrumentationI.cpp @@ -271,7 +271,7 @@ struct OutstandingUpdate void operator()(const SubscriberMetricsPtr& v) { - if(v-> queued -= count) + if(v->queued > 0) { v->queued -= count; } |