]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
getrlimit.2: srcfix
authorAlejandro Colomar <alx.manpages@gmail.com>
Mon, 1 Aug 2022 21:08:53 +0000 (23:08 +0200)
committerAlejandro Colomar <alx.manpages@gmail.com>
Mon, 1 Aug 2022 21:08:53 +0000 (23:08 +0200)
an.tmac:man2/getrlimit.2:246: style: 4 leading space(s) on input line

Reported-by: 'make lint-man'
Reported-by: groff(1)
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
man2/getrlimit.2

index 726b844ca357b366f653e4a2ec2f58573cfa8d67..26d18267e3dba3c78b062c3529b2a2fac651f107 100644 (file)
@@ -242,26 +242,32 @@ This limit is enforced for
 .BR mq_open (3).
 Each message queue that the user creates counts (until it is removed)
 against this limit according to the formula:
+.RS 4
 .IP
-    Since Linux 3.5:
+Since Linux 3.5:
 .IP
+.in +4n
 .EX
-        bytes = attr.mq_maxmsg * sizeof(struct msg_msg) +
-                MIN(attr.mq_maxmsg, MQ_PRIO_MAX) *
-                      sizeof(struct posix_msg_tree_node)+
-                                /* For overhead */
-                attr.mq_maxmsg * attr.mq_msgsize;
-                                /* For message data */
+bytes = attr.mq_maxmsg * sizeof(struct msg_msg) +
+        MIN(attr.mq_maxmsg, MQ_PRIO_MAX) *
+              sizeof(struct posix_msg_tree_node)+
+                        /* For overhead */
+        attr.mq_maxmsg * attr.mq_msgsize;
+                        /* For message data */
 .EE
+.in
 .IP
-    Linux 3.4 and earlier:
+Linux 3.4 and earlier:
 .IP
+.in +4n
 .EX
-        bytes = attr.mq_maxmsg * sizeof(struct msg_msg *) +
-                                /* For overhead */
-                attr.mq_maxmsg * attr.mq_msgsize;
-                                /* For message data */
+bytes = attr.mq_maxmsg * sizeof(struct msg_msg *) +
+                        /* For overhead */
+        attr.mq_maxmsg * attr.mq_msgsize;
+                        /* For message data */
 .EE
+.in
+.RE
 .IP
 where
 .I attr