diff options
author | silby <silby@FreeBSD.org> | 2003-10-21 18:48:49 +0000 |
---|---|---|
committer | silby <silby@FreeBSD.org> | 2003-10-21 18:48:49 +0000 |
commit | 42091b18e2e89b1e943716287b4cd1106ec2b2dd (patch) | |
tree | cfd936efec9023437052ab9763533f1cad447f7c /sbin | |
parent | f0e686a675daa6e2c0de834b5fd380d875dd680b (diff) | |
download | FreeBSD-src-42091b18e2e89b1e943716287b4cd1106ec2b2dd.zip FreeBSD-src-42091b18e2e89b1e943716287b4cd1106ec2b2dd.tar.gz |
Wrap a long line in the previous commit
Suggested by: njl
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/sysctl/sysctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c index 451548f..af25d17 100644 --- a/sbin/sysctl/sysctl.c +++ b/sbin/sysctl/sysctl.c @@ -198,7 +198,8 @@ parse(char *string) if (!(kind&CTLFLAG_WR)) if (kind & CTLFLAG_TUN) { - fprintf(stderr, "Tunable values are set in /boot/loader.conf and require a reboot to take effect.\n"); + fprintf(stderr, "Tunable values are set in" + " /boot/loader.conf and require a reboot to take effect.\n"); errx(1, "oid '%s' is a tunable.", bufp); } else { errx(1, "oid '%s' is read only", bufp); |