aboutsummaryrefslogtreecommitdiff
path: root/sbin/sysctl
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1994-08-08 15:37:35 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1994-08-08 15:37:35 +0000
commitebe06549fd264ac5472172f8bacf2eaeda7f740b (patch)
tree32510af4e8211c7ed351a1c37a9b2ba74c695c1f /sbin/sysctl
parentb10e56daddfe27e67eade61dbaddcd3ec50eebd8 (diff)
downloadsrc-ebe06549fd264ac5472172f8bacf2eaeda7f740b.tar.gz
src-ebe06549fd264ac5472172f8bacf2eaeda7f740b.zip
Suppress irritating extra newline after kern.boottime.
Notes
Notes: svn path=/head/; revision=1951
Diffstat (limited to 'sbin/sysctl')
-rw-r--r--sbin/sysctl/sysctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c
index a3426868b4f2..4dfa6f38daf2 100644
--- a/sbin/sysctl/sysctl.c
+++ b/sbin/sysctl/sysctl.c
@@ -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);