summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2024-05-14 10:11:10 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2024-05-14 10:11:10 +0000
commit788a4de5f4a7970a7e44d1b7f04b64a200a3cb86 (patch)
tree43d05b5edc98d8d192fbc577476e0f54fcf74313 /usr.bin/tmux/server.c
parent228b8d536b4448f2c88b90fd3f89844db81ffb89 (diff)
Add missing time.h to tty.c (from Ismail Donmez), also remove some stray
spaces.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r--usr.bin/tmux/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c
index 494a6231ed7..c5cfce6e0f4 100644
--- a/usr.bin/tmux/server.c
+++ b/usr.bin/tmux/server.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server.c,v 1.205 2023/09/15 15:49:05 nicm Exp $ */
+/* $OpenBSD: server.c,v 1.206 2024/05/14 10:11:09 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -258,7 +258,7 @@ server_loop(void)
struct client *c;
u_int items;
- current_time = time (NULL);
+ current_time = time(NULL);
do {
items = cmdq_next(NULL);