aboutsummaryrefslogtreecommitdiffstats
path: root/man7
diff options
context:
space:
mode:
Diffstat (limited to 'man7')
-rw-r--r--man7/bootparam.72
-rw-r--r--man7/mq_overview.74
-rw-r--r--man7/netlink.74
-rw-r--r--man7/operator.78
4 files changed, 9 insertions, 9 deletions
diff --git a/man7/bootparam.7 b/man7/bootparam.7
index 7033376b11..aa884b3ef0 100644
--- a/man7/bootparam.7
+++ b/man7/bootparam.7
@@ -241,7 +241,7 @@ For example, the boot line
reserve=0x300,32 blah=0x300
.IP
keeps all device drivers except the driver for 'blah' from probing
-0x300-0x31f.
+0x300\-0x31f.
.TP
.B "'mem=...'"
The BIOS call defined in the PC specification that returns
diff --git a/man7/mq_overview.7 b/man7/mq_overview.7
index d78b098179..8c20c0e019 100644
--- a/man7/mq_overview.7
+++ b/man7/mq_overview.7
@@ -135,7 +135,7 @@ kernel memory consumed by POSIX message queues:
This file can be used to view and change the ceiling value for the
maximum number of messages in a queue.
This value acts as a ceiling on the
-.I attr->mq_maxmsg
+.I attr\->mq_maxmsg
argument given to
.BR mq_open (3).
The default and minimum value for
@@ -154,7 +154,7 @@ ceiling is nevertheless imposed.
This file can be used to view and change the ceiling on the
maximum message size.
This value acts as a ceiling on the
-.I attr->mq_msgsize
+.I attr\->mq_msgsize
argument given to
.BR mq_open (3).
The default and minimum value for
diff --git a/man7/netlink.7 b/man7/netlink.7
index eae64acb66..527da096aa 100644
--- a/man7/netlink.7
+++ b/man7/netlink.7
@@ -435,10 +435,10 @@ len = recvmsg(fd, &msg, 0);
for (nh = (struct nlmsghdr *) buf; NLMSG_OK (nh, len);
nh = NLMSG_NEXT (nh, len)) {
/* The end of multipart message. */
- if (nh->nlmsg_type == NLMSG_DONE)
+ if (nh\->nlmsg_type == NLMSG_DONE)
return;
- if (nh->nlmsg_type == NLMSG_ERROR)
+ if (nh\->nlmsg_type == NLMSG_ERROR)
/* Do some error handling. */
...
diff --git a/man7/operator.7 b/man7/operator.7
index 7b790a90fc..ba90226ffb 100644
--- a/man7/operator.7
+++ b/man7/operator.7
@@ -44,10 +44,10 @@ This manual page lists C operators and their precedence in evaluation.
.nf
.B "Operator Associativity"
-() [] -> . left to right
-! ~ ++ -- + - (type) * & sizeof right to left
+() [] \-> . left to right
+! ~ ++ \-\- + \- (type) * & sizeof right to left
* / % left to right
-+ - left to right
++ \- left to right
<< >> left to right
< <= > >= left to right
== != left to right
@@ -57,7 +57,7 @@ This manual page lists C operators and their precedence in evaluation.
&& left to right
|| left to right
?: right to left
-= += -= *= /= %= <<= >>= &= ^= |= right to left
+= += \-= *= /= %= <<= >>= &= ^= |= right to left
, left to right
.fi
.\"