From owner-svn-src-all@FreeBSD.ORG Sun Feb 23 23:49:10 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4C0237F; Sun, 23 Feb 2014 23:49:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C11AB12D6; Sun, 23 Feb 2014 23:49:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1NNnApU096758; Sun, 23 Feb 2014 23:49:10 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1NNnAtg096757; Sun, 23 Feb 2014 23:49:10 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201402232349.s1NNnAtg096757@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 23 Feb 2014 23:49:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262418 - head/usr.sbin/pkg X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Feb 2014 23:49:10 -0000 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); }