Date: Sun, 23 Feb 2014 23:49:10 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262418 - head/usr.sbin/pkg Message-ID: <201402232349.s1NNnAtg096757@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402232349.s1NNnAtg096757>