• R/O
  • SSH

StrMod: Commit

The main repository for the StreamModule project.


Commit MetaInfo

Revision98c58c05408bb8947faf098140498bfc0313165b (tree)
Time2021-02-21 11:48:53
AuthorEric Hopper <hopper@omni...>
CommiterEric Hopper

Log Message

Fix error caught by LGTM.

Change Summary

Incremental Difference

diff -r abd6aa54991d -r 98c58c05408b StrMod/RouterModule.cxx
--- a/StrMod/RouterModule.cxx Sat Feb 20 18:20:01 2021 -0800
+++ b/StrMod/RouterModule.cxx Sat Feb 20 18:48:53 2021 -0800
@@ -204,7 +204,7 @@
204204 adder);
205205 } // End scope of constall
206206 outgoingcopies_ = dests.size();
207- if (outgoingcopies_ >= 0)
207+ if (outgoingcopies_ > 0)
208208 {
209209 while (writeable_.size() > 0)
210210 {
Show on old repository browser