From owner-svn-src-all@FreeBSD.ORG Sun May 31 19:09:25 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49C5738D; Sun, 31 May 2015 19:09:25 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3738D19D5; Sun, 31 May 2015 19:09:25 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4VJ9PRL019409; Sun, 31 May 2015 19:09:25 GMT (envelope-from rodrigc@FreeBSD.org) Received: (from rodrigc@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4VJ9Pi0019408; Sun, 31 May 2015 19:09:25 GMT (envelope-from rodrigc@FreeBSD.org) Message-Id: <201505311909.t4VJ9Pi0019408@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rodrigc set sender to rodrigc@FreeBSD.org using -f From: Craig Rodrigues Date: Sun, 31 May 2015 19:09:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r283835 - head/lib/libc/xdr 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.20 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, 31 May 2015 19:09:25 -0000 Author: rodrigc Date: Sun May 31 19:09:24 2015 New Revision: 283835 URL: https://svnweb.freebsd.org/changeset/base/283835 Log: Use proper prototype for harmless(). Modified: head/lib/libc/xdr/xdr_sizeof.c Modified: head/lib/libc/xdr/xdr_sizeof.c ============================================================================== --- head/lib/libc/xdr/xdr_sizeof.c Sun May 31 18:11:20 2015 (r283834) +++ head/lib/libc/xdr/xdr_sizeof.c Sun May 31 19:09:24 2015 (r283835) @@ -103,7 +103,7 @@ x_inline(XDR *xdrs, u_int len) } static int -harmless() +harmless(void) { /* Always return FALSE/NULL, as the case may be */ return (0);