summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1993-01-08 21:12:58 +0000
committerMichael I. Bushnell <mib@gnu.org>1993-01-08 21:12:58 +0000
commitc193197b500603f5cec36ea670e0316392dcd472 (patch)
tree6f53bc06384d6a9f5eb374641a1b2914c4b3c879 /lib-src
parent07941899b3465d852d8dd49d5c6e03c4655fb588 (diff)
downloademacs-c193197b500603f5cec36ea670e0316392dcd472.tar.gz
Also, write a newline after the token.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/timer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib-src/timer.c b/lib-src/timer.c
index aaa99e69c3a..d49925fb139 100644
--- a/lib-src/timer.c
+++ b/lib-src/timer.c
@@ -64,7 +64,7 @@ schedule (str)
continue;
if (!*p)
{
- fprintf (stderr, "%s: bad input format: %s", pname, str);
+ fprintf (stderr, "%s: bad input format: %s\n", pname, str);
return;
}
*p++ = 0;
@@ -101,7 +101,7 @@ schedule (str)
ep->reply_at = get_date (str, NULL);
if (ep->reply_at - time (&now) < 0)
{
- fprintf (stderr, "%s: bad time spec: %s%c%s", pname, str, FS, p);
+ fprintf (stderr, "%s: bad time spec: %s%c%s\n", pname, str, FS, p);
return;
}
@@ -109,7 +109,7 @@ schedule (str)
ep->token = (char *) malloc ((unsigned) strlen (p) + 1);
if (! ep->token)
{
- fprintf (stderr, "%s: malloc %s: %s%c%s",
+ fprintf (stderr, "%s: malloc %s: %s%c%s\n",
pname, sys_errlist[errno], str, FS, p);
return;
}
@@ -231,7 +231,7 @@ sigcatch (sig)
case SIGTERM:
fprintf (stderr, "Events still queued:\n");
for (ep = events; ep < events + num_events; ep++)
- fprintf (stderr, "%d = %ld @ %s",
+ fprintf (stderr, "%d = %ld @ %s\n",
ep - events, ep->reply_at, ep->token);
exit (0);
break;