1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

s/struct dev_t */dev_t */

This commit is contained in:
Poul-Henning Kamp 2002-09-28 21:21:01 +00:00
parent b9b7876d2b
commit 19ebba326b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104113

View File

@ -152,7 +152,7 @@ devfs_attemptoverflow(int insist)
ot = NULL; ot = NULL;
or = NULL; or = NULL;
n = devfs_noverflowwant; n = devfs_noverflowwant;
nb = sizeof (struct dev_t *) * n; nb = sizeof (dev_t *) * n;
MALLOC(ot, dev_t **, nb, M_DEVFS, (insist ? M_WAITOK : M_NOWAIT) | M_ZERO); MALLOC(ot, dev_t **, nb, M_DEVFS, (insist ? M_WAITOK : M_NOWAIT) | M_ZERO);
if (ot == NULL) if (ot == NULL)
goto bail; goto bail;