From owner-svn-src-all@FreeBSD.ORG Fri Oct 12 01:31:03 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 780C2D4D; Fri, 12 Oct 2012 01:31:03 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5F9458FC08; Fri, 12 Oct 2012 01:31:03 +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 q9C1V32c018801; Fri, 12 Oct 2012 01:31:03 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C1V3jM018799; Fri, 12 Oct 2012 01:31:03 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201210120131.q9C1V3jM018799@svn.freebsd.org> From: Kevin Lo Date: Fri, 12 Oct 2012 01:31:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r241471 - head/share/man/man9 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.14 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, 12 Oct 2012 01:31:03 -0000 Author: kevlo Date: Fri Oct 12 01:31:02 2012 New Revision: 241471 URL: http://svn.freebsd.org/changeset/base/241471 Log: Since the moduledata structure member priv is a void pointer, using NULL instead of 0 when dealing with pointers. Modified: head/share/man/man9/module.9 Modified: head/share/man/man9/module.9 ============================================================================== --- head/share/man/man9/module.9 Thu Oct 11 23:41:18 2012 (r241470) +++ head/share/man/man9/module.9 Fri Oct 12 01:31:02 2012 (r241471) @@ -99,7 +99,7 @@ static int foo_handler(module_t mod, int static moduledata_t mod_data= { "foo", foo_handler, - 0 + NULL }; MODULE_VERSION(foo, 1);