summary refs log tree commit diff
path: root/client.c
diff options
context:
space:
mode:
authoroga <oga>2009-08-24 21:22:48 +0000
committeroga <oga>2009-08-24 21:22:48 +0000
commit09d88f4a18623fff580e7381aa242dae5b53cc18 (patch)
tree78c42d03fba77fa3f3cef893d8b720770fdab4ad /client.c
parente7f0d63413565065d6681acb5ca53654a473e126 (diff)
downloadcwm-09d88f4a18623fff580e7381aa242dae5b53cc18.tar.gz
cwm-09d88f4a18623fff580e7381aa242dae5b53cc18.tar.xz
cwm-09d88f4a18623fff580e7381aa242dae5b53cc18.zip
Instead of having a function that just calls TAILQ_INIT on a global, use
TAILQ_HEAD_INITIALIZER() and drop the function.

ok okan@
Diffstat (limited to 'client.c')
-rw-r--r--client.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/client.c b/client.c
index 4ae84fd..b6e6ad2 100644
--- a/client.c
+++ b/client.c
@@ -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)
 {