Fix argument reversal in example.

PR:		7138
Reviewed by:	phk
Submitted by:	Robert Watson <robert+freebsd@cyrus.watson.org>
This commit is contained in:
Poul-Henning Kamp 1998-07-02 05:37:33 +00:00
parent 1ce46cef12
commit 0b014ec5ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37331

View File

@ -135,7 +135,7 @@ malloc_type_t M_FOOBUF = {
/* sys/something/foo_subr.c */
...
MALLOC(buf, sizeof *buf, struct foo_buf *, M_FOOBUF, M_NOWAIT);
MALLOC(buf, struct foo_buf *, sizeof *buf, M_FOOBUF, M_NOWAIT);
.Be
.Sh RETURN VALUES