svn commit: r185010 - head/share/man/man9
Ed Schouten
ed at FreeBSD.org
Sun Nov 16 13:26:56 PST 2008
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
More information about the svn-src-all
mailing list