[sgen] Don't return unused thread count from stop/start world functions.
[mono.git] / mono / metadata / sgen-gray.c
index fd9f39dc66e0e7e2f572dadbbc4079c9ac812ab8..4dfca503335ea7a665c4670c69e4035afc7ce17c 100644 (file)
@@ -140,7 +140,7 @@ sgen_gray_object_dequeue (SgenGrayQueue *queue)
        }
 
        STATE_ASSERT (queue->first, GRAY_QUEUE_SECTION_STATE_ENQUEUED);
-       SGEN_ASSERT (9, queue->cursor >= GRAY_FIRST_CURSOR_POSITION (queue->first), "gray queue %p underflow, first %p, cursor %d", queue, queue->first, queue->cursor);
+       SGEN_ASSERT (9, queue->cursor >= GRAY_FIRST_CURSOR_POSITION (queue->first), "gray queue %p underflow", queue);
 
        entry = *queue->cursor--;