diff options
author | Damien Miller <djm@mindrot.org> | 2007-10-26 08:41:14 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2007-10-26 08:41:14 +0200 |
commit | d129ecb0f98ea6e7e83f2a0a8914d3f99d5184c9 (patch) | |
tree | f74b3d39711a90d3be9221cc86317d489b492d4a /openbsd-compat/sys-queue.h | |
parent | - grange@cvs.openbsd.org 2004/05/04 16:59:32 (diff) | |
download | openssh-d129ecb0f98ea6e7e83f2a0a8914d3f99d5184c9.tar.xz openssh-d129ecb0f98ea6e7e83f2a0a8914d3f99d5184c9.zip |
- deraadt@cvs.openbsd.org 2005/02/25 13:29:30
[openbsd-compat/sys-queue.h]
minor white spacing
Diffstat (limited to 'openbsd-compat/sys-queue.h')
-rw-r--r-- | openbsd-compat/sys-queue.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openbsd-compat/sys-queue.h b/openbsd-compat/sys-queue.h index 71eec0e8c..61e4ca7b0 100644 --- a/openbsd-compat/sys-queue.h +++ b/openbsd-compat/sys-queue.h @@ -1,4 +1,4 @@ -/* $OpenBSD: queue.h,v 1.26 2004/05/04 16:59:32 grange Exp $ */ +/* $OpenBSD: queue.h,v 1.27 2005/02/25 13:29:30 deraadt Exp $ */ /* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */ /* @@ -229,10 +229,10 @@ struct { \ #define SLIST_REMOVE(head, elm, type, field) do { \ if ((head)->slh_first == (elm)) { \ SLIST_REMOVE_HEAD((head), field); \ - } \ - else { \ + } else { \ struct type *curelm = (head)->slh_first; \ - while( curelm->field.sle_next != (elm) ) \ + \ + while (curelm->field.sle_next != (elm)) \ curelm = curelm->field.sle_next; \ curelm->field.sle_next = \ curelm->field.sle_next->field.sle_next; \ |