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:
Uli Schlachter 2012-05-05 12:13:08 +02:00
parent c654cfd8d2
commit f252746e86
1 changed files with 1 additions and 1 deletions

View File

@ -674,7 +674,7 @@ client_set_minimized(lua_State *L, int cidx, bool s)
* \param cidx The client index. * \param cidx The client index.
* \param s Set or not the client hidden. * \param s Set or not the client hidden.
*/ */
void static void
client_set_hidden(lua_State *L, int cidx, bool s) client_set_hidden(lua_State *L, int cidx, bool s)
{ {
client_t *c = luaA_checkudata(L, cidx, &client_class); client_t *c = luaA_checkudata(L, cidx, &client_class);