diff options
author | 2019-01-22 06:44:46 +0000 | |
---|---|---|
committer | 2019-01-22 06:44:46 +0000 | |
commit | 30b897d4085937f668348fae66d615815d332579 (patch) | |
tree | 25e969ef8afe578cb6022c521a2d0c4e43c4548c /lib/libc/stdlib | |
parent | Make zoneinfo directories have permissions 0755 instead of 0555 (diff) | |
download | wireguard-openbsd-30b897d4085937f668348fae66d615815d332579.tar.xz wireguard-openbsd-30b897d4085937f668348fae66d615815d332579.zip |
Wrap long line
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/qsort.3 | 8 |
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; } |