From 84a8617808cff307a07ac3793917b3a187ccab18 Mon Sep 17 00:00:00 2001 From: phk Date: Thu, 2 Jul 1998 05:37:33 +0000 Subject: 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(-) (limited to 'share') diff --git a/share/man/man9/malloc.9 b/share/man/man9/malloc.9 index a78563e..bcb69bd 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 -- cgit v1.1