Fix argument reversal in example.
PR: 7138 Reviewed by: phk Submitted by: Robert Watson <robert+freebsd@cyrus.watson.org>
This commit is contained in:
parent
532390febb
commit
84a8617808
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user