From owner-svn-src-all@FreeBSD.ORG Fri Dec 16 16:07:39 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C35781065670; Fri, 16 Dec 2011 16:07:39 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B1FCE8FC13; Fri, 16 Dec 2011 16:07:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id pBGG7dgW015347; Fri, 16 Dec 2011 16:07:39 GMT (envelope-from dim@svn.freebsd.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pBGG7dGs015345; Fri, 16 Dec 2011 16:07:39 GMT (envelope-from dim@svn.freebsd.org) Message-Id: <201112161607.pBGG7dGs015345@svn.freebsd.org> From: Dimitry Andric Date: Fri, 16 Dec 2011 16:07:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r228586 - head/libexec/pppoed X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 16 Dec 2011 16:07:39 -0000 Author: dim Date: Fri Dec 16 16:07:39 2011 New Revision: 228586 URL: http://svn.freebsd.org/changeset/base/228586 Log: In libexec/pppoed/pppoed.c, use the correct printf length modifier for a size_t. MFC after: 1 week Modified: head/libexec/pppoed/pppoed.c Modified: head/libexec/pppoed/pppoed.c ============================================================================== --- head/libexec/pppoed/pppoed.c Fri Dec 16 15:58:38 2011 (r228585) +++ head/libexec/pppoed/pppoed.c Fri Dec 16 16:07:39 2011 (r228586) @@ -570,8 +570,8 @@ main(int argc, char *argv[]) } exec = (char *)alloca(sizeof DEFAULT_EXEC_PREFIX + strlen(label)); if (exec == NULL) { - fprintf(stderr, "%s: Cannot allocate %d bytes\n", prog, - (int)(sizeof DEFAULT_EXEC_PREFIX) + strlen(label)); + fprintf(stderr, "%s: Cannot allocate %zu bytes\n", prog, + sizeof DEFAULT_EXEC_PREFIX + strlen(label)); return EX_OSERR; } strcpy(exec, DEFAULT_EXEC_PREFIX);