svn commit: r273388 - head/share/man/man9

John-Mark Gurney jmg at FreeBSD.org
Tue Oct 21 17:17:41 UTC 2014


Author: jmg
Date: Tue Oct 21 17:17:40 2014
New Revision: 273388
URL: https://svnweb.freebsd.org/changeset/base/273388

Log:
  spell out the arguments..
  
  the + *offsetp does not belong w/ the type, move it outside the .Fn
  macro...

Modified:
  head/share/man/man9/mbuf.9

Modified: head/share/man/man9/mbuf.9
==============================================================================
--- head/share/man/man9/mbuf.9	Tue Oct 21 16:44:03 2014	(r273387)
+++ head/share/man/man9/mbuf.9	Tue Oct 21 17:17:40 2014	(r273388)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd June 5, 2014
+.Dd October 21, 2014
 .Dt MBUF 9
 .Os
 .\"
@@ -738,15 +738,16 @@ the offset in the data region of the
 to the data contained in the returned mbuf is stored in
 .Fa *offsetp .
 If
-.Fa offp
+.Fa offsetp
 is NULL, the region may be accessed using
 .Fn mtod mbuf type .
 If
-.Fa offp
+.Fa offsetp
 is non-NULL, the region may be accessed using
-.Fn mtod mbuf uint8_t + *offsetp .
+.Fn mtod mbuf uint8_t
++ *offsetp.
 The region of the mbuf chain between its beginning and
-.Fa off
+.Fa offset
 is not modified, therefore it is safe to hold pointers to data within
 this region before calling
 .Fn m_pulldown .


More information about the svn-src-all mailing list