Suppress irritating extra newline after kern.boottime.

This commit is contained in:
Garrett Wollman 1994-08-08 15:37:35 +00:00
parent b10e56dadd
commit ebe06549fd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=1951
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);