mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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
1ce46cef12
commit
0b014ec5ac
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue