mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.ringbuffer: Change types of length related variables to size_t [-Wsign-compare]
This commit is contained in:
parent
962ba79613
commit
2246bd21b5
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ void modpos(ringbuffer *b) {
|
|||
b->wpos = b->wpos % b->alen;
|
||||
}
|
||||
|
||||
int find(ringbuffer *b, const char *s, int l) {
|
||||
int find(ringbuffer *b, const char *s, size_t l) {
|
||||
size_t i, j;
|
||||
int m;
|
||||
|
||||
|
@ -74,7 +74,7 @@ int rb_find(lua_State *L) {
|
|||
|
||||
int rb_read(lua_State *L) {
|
||||
ringbuffer *b = luaL_checkudata(L, 1, "ringbuffer_mt");
|
||||
int r = luaL_checkinteger(L, 2);
|
||||
size_t r = luaL_checkinteger(L, 2);
|
||||
int peek = lua_toboolean(L, 3);
|
||||
|
||||
if(r > b->blen) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue