Suppress irritating extra newline after kern.boottime.

This commit is contained in:
wollman 1994-08-08 15:37:35 +00:00
parent ffc1108145
commit 52d2ac9615
2 changed files with 2 additions and 2 deletions

View File

@ -377,7 +377,7 @@ parse(string, flags)
struct timeval *btp = (struct timeval *)buf;
if (!nflag)
fprintf(stdout, "%s = %s\n", string,
fprintf(stdout, "%s = %s", string,
ctime(&btp->tv_sec));
else
fprintf(stdout, "%d\n", btp->tv_sec);

View File

@ -377,7 +377,7 @@ parse(string, flags)
struct timeval *btp = (struct timeval *)buf;
if (!nflag)
fprintf(stdout, "%s = %s\n", string,
fprintf(stdout, "%s = %s", string,
ctime(&btp->tv_sec));
else
fprintf(stdout, "%d\n", btp->tv_sec);