diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-03-01 10:28:56 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-03-01 10:28:56 +0000 |
commit | d519d53cc4e9c24a5a5715cec23439ea90047f3d (patch) | |
tree | e7667446741c32eb058675eaf7c20ef0849b95da | |
parent | 7e912a4de34e8f731828423a5f38dba2b00b51fc (diff) |
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); } |