aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authoroga2009-08-24 21:22:48 +0000
committeroga2009-08-24 21:22:48 +0000
commitc460e9758e8fcb33b958beca85d70b67857758d4 (patch)
treec7b727050f8e11bfab7a85ea73440e8f7109914a /client.c
parent4ab2deedeb800d2e9ab96b2153261c520bec2de5 (diff)
downloadcwm-c460e9758e8fcb33b958beca85d70b67857758d4.tar.gz
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.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/client.c b/client.c
index 03b898a..2814aaf 100644
--- a/client.c
+++ b/client.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: client.c,v 1.58 2009/08/24 17:04:39 oga Exp $
+ * $Id: client.c,v 1.59 2009/08/24 21:22:48 oga Exp $
*/
#include "headers.h"
@@ -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)
{