diff options
author | 2009-03-01 10:28:55 +0000 | |
---|---|---|
committer | 2009-03-01 10:28:55 +0000 | |
commit | 06d7c3dad6a1b7d45829e174eea0447db36918fa (patch) | |
tree | 478e55beb00aa015807d0091a410d4da522d8284 | |
parent | Sync disklabel instructions with reality and those detailed in INSTALL.sgi. (diff) | |
download | wireguard-openbsd-06d7c3dad6a1b7d45829e174eea0447db36918fa.tar.xz wireguard-openbsd-06d7c3dad6a1b7d45829e174eea0447db36918fa.zip |
zap trailing whitespace;
-rw-r--r-- | share/man/man3/queue.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man3/queue.3 b/share/man/man3/queue.3 index 776e64b452d..fb5e77f7c09 100644 --- a/share/man/man3/queue.3 +++ b/share/man/man3/queue.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: queue.3,v 1.48 2009/02/25 16:43:05 beck Exp $ +.\" $OpenBSD: queue.3,v 1.49 2009/03/01 10:28:55 jmc Exp $ .\" $NetBSD: queue.3,v 1.4 1995/07/03 00:25:36 mycroft Exp $ .\" .\" Copyright (c) 1993 The Regents of the University of California. @@ -30,7 +30,7 @@ .\" .\" @(#)queue.3 8.1 (Berkeley) 12/13/93 .\" -.Dd $Mdocdate: February 25 2009 $ +.Dd $Mdocdate: March 1 2009 $ .Dt QUEUE 3 .Os .Sh NAME @@ -921,7 +921,7 @@ while (np = TAILQ_FIRST(&head)) { TAILQ_REMOVE(&head, np, entries); free(np); } - + .Ed .Sh CIRCULAR QUEUES A circular queue is headed by a structure defined by the @@ -1064,7 +1064,7 @@ CIRCLEQ_FOREACH_REVERSE(np, &head, entries) np-> ... /* Delete. */ while (!CIRCLEQ_EMPTY(&head)) { - n1 = CIRCLEQ_FIRST(&head); + n1 = CIRCLEQ_FIRST(&head); CIRCLEQ_REMOVE(&head, n1, entries); free(n1); } |