From 5af65d897cae7eb7dbbdc7e967f3cd1e67552a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Fri, 14 Jan 2022 11:39:27 -0300 Subject: [PATCH] terminal: use CLOCK_MONOTONIC instead of literal. CLOCK_MONOTONIC isn't guaranteed to have the same value on all platforms, and this makes the code more readable. --- terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.c b/terminal.c index 797bc84d..f985ec54 100644 --- a/terminal.c +++ b/terminal.c @@ -290,7 +290,7 @@ fdm_ptmx(struct fdm *fdm, int fd, int events, void *data) #if PTMX_TIMING struct timespec now; - clock_gettime(1, &now); + clock_gettime(CLOCK_MONOTONIC, &now); if (last.tv_sec > 0 || last.tv_nsec > 0) { struct timeval diff; struct timeval l = {last.tv_sec, last.tv_nsec / 1000};