Add missing time.h to tty.c (from Ismail Donmez), also remove some stray
authornicm <nicm@openbsd.org>
Tue, 14 May 2024 10:11:09 +0000 (10:11 +0000)
committernicm <nicm@openbsd.org>
Tue, 14 May 2024 10:11:09 +0000 (10:11 +0000)
spaces.

usr.bin/tmux/server.c
usr.bin/tmux/tty.c

index 494a623..c5cfce6 100644 (file)
@@ -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);
index e6205c8..3e1120c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty.c,v 1.435 2023/09/15 15:49:05 nicm Exp $ */
+/* $OpenBSD: tty.c,v 1.436 2024/05/14 10:11:09 nicm Exp $ */
 
 /*
  * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -28,6 +28,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <termios.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "tmux.h"
@@ -374,13 +375,13 @@ tty_send_requests(struct tty *tty)
                tty_puts(tty, "\033]11;?\033\\");
        } else
                tty->flags |= TTY_ALL_REQUEST_FLAGS;
-       tty->last_requests = time (NULL);
+       tty->last_requests = time(NULL);
 }
 
 void
 tty_repeat_requests(struct tty *tty)
 {
-       time_t  t = time (NULL);
+       time_t  t = time(NULL);
 
        if (~tty->flags & TTY_STARTED)
                return;