Fix a harmless compiler warning
objects/client.c:678:1: warning: no previous prototype for ‘client_set_hidden’ Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
c654cfd8d2
commit
f252746e86
|
@ -674,7 +674,7 @@ client_set_minimized(lua_State *L, int cidx, bool s)
|
|||
* \param cidx The client index.
|
||||
* \param s Set or not the client hidden.
|
||||
*/
|
||||
void
|
||||
static void
|
||||
client_set_hidden(lua_State *L, int cidx, bool s)
|
||||
{
|
||||
client_t *c = luaA_checkudata(L, cidx, &client_class);
|
||||
|
|
Loading…
Reference in New Issue