From 0b014ec5ac041985a420a410fcae7e30f6dc158f Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Thu, 2 Jul 1998 05:37:33 +0000 Subject: [PATCH] Fix argument reversal in example. PR: 7138 Reviewed by: phk Submitted by: Robert Watson --- share/man/man9/malloc.9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/man/man9/malloc.9 b/share/man/man9/malloc.9 index a78563eb53f..bcb69bd53be 100644 --- a/share/man/man9/malloc.9 +++ b/share/man/man9/malloc.9 @@ -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