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

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


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

Log:
  it is not cast to a pointer of the specified type, it is cast to the
  specified type...
  
  mtod(m, uint8_t) does not work, mtod(m, uint8_t *) does work..

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

Modified: head/share/man/man9/mbuf.9
==============================================================================
--- head/share/man/man9/mbuf.9	Tue Oct 21 17:58:53 2014	(r273391)
+++ head/share/man/man9/mbuf.9	Tue Oct 21 17:59:27 2014	(r273392)
@@ -355,7 +355,7 @@ developer with common utilities.
 Convert an
 .Fa mbuf
 pointer to a data pointer.
-The macro expands to the data pointer cast to the pointer of the specified
+The macro expands to the data pointer cast to the specified
 .Fa type .
 .Sy Note :
 It is advisable to ensure that there is enough contiguous data in


More information about the svn-src-all mailing list