aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/ringbuffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-src/ringbuffer.c')
-rw-r--r--util-src/ringbuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/ringbuffer.c b/util-src/ringbuffer.c
index 73a8616b..640dc648 100644
--- a/util-src/ringbuffer.c
+++ b/util-src/ringbuffer.c
@@ -139,7 +139,7 @@ int rb_write(lua_State* L) {
int rb_tostring(lua_State* L) {
ringbuffer* b = luaL_checkudata(L, 1, "ringbuffer_mt");
- lua_pushfstring(L, "ringbuffer: %p->%p %d/%d", b, b->buffer, b->blen, b->alen);
+ lua_pushfstring(L, "ringbuffer: %p %d/%d", b, b->blen, b->alen);
return 1;
}