diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-05 08:50:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-05 08:50:33 +0000 |
commit | 0e81a5216f45e670d5612c748a8e119507a7b60b (patch) | |
tree | b9fd5d6060b2081efb396b2ee24c5f69af68432e | |
parent | d2b5f6ec1ecb1e30ce5f13cf0d7c0dc0fd0fd333 (diff) |
EVLOOP_ONCE takes care of the wakeup, so no need to call event_loopexit(NULL).
-rw-r--r-- | usr.bin/tmux/server.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c index 7b3b940eb1e..05515db4248 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.73 2009/11/05 08:48:15 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.74 2009/11/05 08:50:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -210,7 +210,6 @@ server_loop(void) while (!server_should_shutdown()) { server_update_socket(); - event_loopexit(NULL); event_loop(EVLOOP_ONCE); server_window_loop(); |