svn commit: r262418 - head/usr.sbin/pkg
Baptiste Daroussin
bapt at FreeBSD.org
Sun Feb 23 23:49:10 UTC 2014
Author: bapt
Date: Sun Feb 23 23:49:10 2014
New Revision: 262418
URL: http://svnweb.freebsd.org/changeset/base/262418
Log:
Remove a useless newline, warnx already appends a newline
Modified:
head/usr.sbin/pkg/pkg.c
Modified: head/usr.sbin/pkg/pkg.c
==============================================================================
--- head/usr.sbin/pkg/pkg.c Sun Feb 23 23:36:32 2014 (r262417)
+++ head/usr.sbin/pkg/pkg.c Sun Feb 23 23:49:10 2014 (r262418)
@@ -299,7 +299,7 @@ parse_fingerprint(ucl_object_t *obj)
fct = HASH_SHA256;
if (fct == HASH_UNKNOWN) {
- warnx("Unsupported hashing function: %s\n", function);
+ warnx("Unsupported hashing function: %s", function);
return (NULL);
}
More information about the svn-src-all
mailing list