summary refs log tree commit diff
path: root/screen.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 /screen.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 'screen.c')
-rw-r--r--screen.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/screen.c b/screen.c
index e538cd8..6c7be33 100644
--- a/screen.c
+++ b/screen.c
@@ -23,12 +23,6 @@
 
 extern struct screen_ctx	*Curscreen;
 
-void
-screen_init(void)
-{
-	TAILQ_INIT(&Screenq);
-}
-
 struct screen_ctx *
 screen_fromroot(Window rootwin)
 {