Changes between Version 3 and Version 4 of Ticket #60852, comment 10
- Timestamp:
- Feb 23, 2022, 12:01:09 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #60852, comment 10
v3 v4 45 45 46 46 }}} 47 48 But seems to be endless story: 49 50 {{{ 51 --- osx_sink.cc.orig 2022-02-23 00:57:15.000000000 +0100 52 +++ osx_sink.cc 2022-02-23 00:57:22.000000000 +0100 53 @@ -115,7 +115,7 @@ 54 err_str += ": "; 55 for (UInt32 nn = 0; nn < all_names.size(); ++nn) { 56 err_str += all_names[nn]; 57 - if (nn != all_names - 1) { 58 + if (nn != all_names.size() - 1) { 59 err_str += ", "; 60 } 61 } 62 63 }}}