diff options
author | matthew <matthew@FreeBSD.org> | 2012-12-23 20:39:03 +0000 |
---|---|---|
committer | matthew <matthew@FreeBSD.org> | 2012-12-23 20:39:03 +0000 |
commit | 76534720131b94d6a1c11f1d28c122a2bd86c924 (patch) | |
tree | 4ec83211dd80c04c73e54fa26e494450f8497d9e | |
parent | 7f6288fb8f5499c436aa7ff0a95957bb13c2b459 (diff) | |
download | FreeBSD-src-76534720131b94d6a1c11f1d28c122a2bd86c924.zip FreeBSD-src-76534720131b94d6a1c11f1d28c122a2bd86c924.tar.gz |
Remove extraneous space and new-line.
Submitted by: pjd, gcooper
Approved by: bapt
MFC after: 2 weeks
-rw-r--r-- | usr.sbin/pkg/pkg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg/pkg.c b/usr.sbin/pkg/pkg.c index 485c08c..1b3146b 100644 --- a/usr.sbin/pkg/pkg.c +++ b/usr.sbin/pkg/pkg.c @@ -457,8 +457,8 @@ main(__unused int argc, char *argv[]) * a system is configured to use pkg, don't bootstrap pkg * when that argument is given as argv[1]. */ - if ( argv[1] != NULL && strcmp(argv[1], "-N") == 0) - errx(EXIT_FAILURE, "pkg is not installed\n"); + if (argv[1] != NULL && strcmp(argv[1], "-N") == 0) + errx(EXIT_FAILURE, "pkg is not installed"); /* * Do not ask for confirmation if either of stdin or stdout is |