Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Nov 2008 21:26:56 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r185010 - head/share/man/man9
Message-ID:  <200811162126.mAGLQu2R065059@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ed
Date: Sun Nov 16 21:26:56 2008
New Revision: 185010
URL: http://svn.freebsd.org/changeset/base/185010

Log:
  Fix argument layout of devfs_get_cdevpriv().
  
  Right now it shows `void' and `**datap' as two different arguments,
  while they belong together.

Modified:
  head/share/man/man9/devfs_set_cdevpriv.9

Modified: head/share/man/man9/devfs_set_cdevpriv.9
==============================================================================
--- head/share/man/man9/devfs_set_cdevpriv.9	Sun Nov 16 21:21:09 2008	(r185009)
+++ head/share/man/man9/devfs_set_cdevpriv.9	Sun Nov 16 21:26:56 2008	(r185010)
@@ -39,7 +39,7 @@
 typedef	void (*cdevpriv_dtr_t)(void *data);
 .Ed
 .Ft int
-.Fn devfs_get_cdevpriv void **datap
+.Fn devfs_get_cdevpriv "void **datap"
 .Ft int
 .Fn devfs_set_cdevpriv "void *priv" "cdevpriv_dtr_t dtr"
 .Ft void



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200811162126.mAGLQu2R065059>