]> Pileus Git - ~andy/linux/blobdiff - Documentation/networking/netlink_mmap.txt
doc: fix some syntax errors in netlink mmap sample code
[~andy/linux] / Documentation / networking / netlink_mmap.txt
index e6088baf109de98567731eb4de901a52ce029bfa..5cc6005877785a6c1f305d32011175506a32d5e8 100644 (file)
@@ -274,9 +274,9 @@ This example assumes some ring parameters of the ring setup are available.
                        /* Get next frame header */
                        hdr = rx_ring + frame_offset;
 
-                       if (hdr->nm_status == NL_MMAP_STATUS_VALID)
+                       if (hdr->nm_status == NL_MMAP_STATUS_VALID) {
                                /* Regular memory mapped frame */
-                               nlh = (void *hdr) + NL_MMAP_HDRLEN;
+                               nlh = (void *)hdr + NL_MMAP_HDRLEN;
                                len = hdr->nm_len;
 
                                /* Release empty message immediately. May happen