Instead of having a function that just calls TAILQ_INIT on a global, use

TAILQ_HEAD_INITIALIZER() and drop the function.

ok okan@
This commit is contained in:
oga
2009-08-24 21:22:48 +00:00
parent e7f0d63413
commit 09d88f4a18
4 changed files with 2 additions and 18 deletions

View File

@@ -32,12 +32,6 @@ static int client_inbound(struct client_ctx *, int, int);
static char emptystring[] = "";
struct client_ctx *_curcc = NULL;
void
client_init(void)
{
TAILQ_INIT(&Clientq);
}
struct client_ctx *
client_find(Window win)
{