1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Fix argument layout of devfs_get_cdevpriv().

Right now it shows `void' and `**datap' as two different arguments,
while they belong together.
This commit is contained in:
Ed Schouten 2008-11-16 21:26:56 +00:00
parent 11202ac9db
commit 6da593a22a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=185010

View File

@ -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