summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2019-01-22 06:44:46 +0000
committerotto <otto@openbsd.org>2019-01-22 06:44:46 +0000
commit30b897d4085937f668348fae66d615815d332579 (patch)
tree25e969ef8afe578cb6022c521a2d0c4e43c4548c /lib/libc/stdlib
parentMake zoneinfo directories have permissions 0755 instead of 0555 (diff)
downloadwireguard-openbsd-30b897d4085937f668348fae66d615815d332579.tar.xz
wireguard-openbsd-30b897d4085937f668348fae66d615815d332579.zip
Wrap long line
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/qsort.38
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdlib/qsort.3 b/lib/libc/stdlib/qsort.3
index cbb1ec44d4f..57678c0ebf2 100644
--- a/lib/libc/stdlib/qsort.3
+++ b/lib/libc/stdlib/qsort.3
@@ -29,9 +29,9 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $OpenBSD: qsort.3,v 1.22 2019/01/21 20:43:27 tedu Exp $
+.\" $OpenBSD: qsort.3,v 1.23 2019/01/22 06:44:46 otto Exp $
.\"
-.Dd $Mdocdate: January 21 2019 $
+.Dd $Mdocdate: January 22 2019 $
.Dt QSORT 3
.Os
.Sh NAME
@@ -188,8 +188,8 @@ cmp(const void *a, const void *b)
size_t lena = strlen(*(const char **)a);
size_t lenb = strlen(*(const char **)b);
/*
- * Do not subtract the lengths. The difference between values cannot
- * be represented by an int.
+ * Do not subtract the lengths. The difference between values
+ * cannot be represented by an int.
*/
return lena < lenb ? -1 : lena > lenb;
}