diff options
author | jmg <jmg@FreeBSD.org> | 2014-10-21 17:59:27 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 2014-10-21 17:59:27 +0000 |
commit | 6c273ee4a72257dada6db6f07fefa36afed9bfda (patch) | |
tree | 9f7656e2a0806b5a5447044f948ef571cd6ce816 | |
parent | 5ae76a2893c565dd8965756b87b3b1303c1b086b (diff) | |
download | FreeBSD-src-6c273ee4a72257dada6db6f07fefa36afed9bfda.zip FreeBSD-src-6c273ee4a72257dada6db6f07fefa36afed9bfda.tar.gz |
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..
-rw-r--r-- | share/man/man9/mbuf.9 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 0068b9c..6edbf44 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -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 |