From 5319c7c1b963ad204768fb6ca20442a38adf3593 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Fri, 8 Jan 1993 20:36:14 +0000 Subject: [PATCH] timer.c (notify): Flush stdout after writing message to avoid lossage on terminals. --- lib-src/timer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib-src/timer.c b/lib-src/timer.c index 6563965d8e..fa603c73d5 100644 --- a/lib-src/timer.c +++ b/lib-src/timer.c @@ -131,6 +131,7 @@ notify () if (ep->reply_at <= now) { fputs (ep->token, stdout); + putc ('\n', stdout); fflush (stdout); free (ep->token); -- GitLab