Fix argument reversal in example.

PR:		7138
Reviewed by:	phk
Submitted by:	Robert Watson <robert+freebsd@cyrus.watson.org>
This commit is contained in:
phk 1998-07-02 05:37:33 +00:00
parent 532390febb
commit 84a8617808

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