aboutsummaryrefslogtreecommitdiff
path: root/src/rt/circular_buffer.cpp
diff options
context:
space:
mode:
authorMichael Bebenita <[email protected]>2010-08-16 15:04:33 -0700
committerMichael Bebenita <[email protected]>2010-08-16 15:05:57 -0700
commit14f5b5750d6509ca69180341b82e99f7fbf9fddb (patch)
treed00b9655c4bc6517b32273411d1962722363b379 /src/rt/circular_buffer.cpp
parentPulled rust_srv in its own file. Some cleanup, and added varargs to assertion... (diff)
downloadrust-14f5b5750d6509ca69180341b82e99f7fbf9fddb.tar.xz
rust-14f5b5750d6509ca69180341b82e99f7fbf9fddb.zip
Un-xfailed working tests.
Diffstat (limited to 'src/rt/circular_buffer.cpp')
-rw-r--r--src/rt/circular_buffer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rt/circular_buffer.cpp b/src/rt/circular_buffer.cpp
index e5432bd9..b2eab97e 100644
--- a/src/rt/circular_buffer.cpp
+++ b/src/rt/circular_buffer.cpp
@@ -33,7 +33,8 @@ circular_buffer::circular_buffer(rust_dom *dom, size_t unit_sz) :
circular_buffer::~circular_buffer() {
dom->log(rust_log::MEM, "~circular_buffer 0x%" PRIxPTR, this);
I(dom, _buffer);
- W(dom, _unread == 0, "~circular_buffer with %d unread bytes", _unread);
+ W(dom, _unread == 0,
+ "freeing circular_buffer with %d unread bytes", _unread);
dom->free(_buffer);
}