wibox: use integer as array index

Let the compiler chose the right type.

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-01-19 13:24:33 +01:00
parent dad33fd0dd
commit 6a10f5989e
1 changed files with 1 additions and 1 deletions

View File

@ -677,7 +677,7 @@ luaA_wibox_new(lua_State *L)
const char *buf;
size_t len;
xcolor_init_request_t reqs[3];
int8_t i, reqs_nbr = -1;
int i, reqs_nbr = -1;
luaA_checktable(L, 2);