mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.ringbuffer: Remove address of buffer itself from __tostring since is now in the same struct
This commit is contained in:
parent
a586901308
commit
3e41ed8099
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue