< prev index next >

src/share/vm/gc/cms/allocationStats.hpp

Print this page

        

@@ -103,13 +103,13 @@
            "Conservation Principle");
     if (inter_sweep_current > _threshold) {
       ssize_t demand = prev_sweep() - (ssize_t)count + split_births() + coal_births()
                        - split_deaths() - coal_deaths();
       assert(demand >= 0,
-             err_msg("Demand (" SSIZE_FORMAT ") should be non-negative for "
+             "Demand (" SSIZE_FORMAT ") should be non-negative for "
                      PTR_FORMAT " (size=" SIZE_FORMAT ")",
-                     demand, p2i(this), count));
+             demand, p2i(this), count);
       // Defensive: adjust for imprecision in event counting
       if (demand < 0) {
         demand = 0;
       }
       float old_rate = _demand_rate_estimate.padded_average();
< prev index next >