diff options
author | 2005-02-25 13:29:30 +0000 | |
---|---|---|
committer | 2005-02-25 13:29:30 +0000 | |
commit | fde8d8e09785c33cedb0a2aca79e3aeab840aeb2 (patch) | |
tree | c13f73f746c7a17ea576723d351733e088f9b9c5 /sys/sys/queue.h | |
parent | Enable re(4) on alpha. (diff) | |
download | wireguard-openbsd-fde8d8e09785c33cedb0a2aca79e3aeab840aeb2.tar.xz wireguard-openbsd-fde8d8e09785c33cedb0a2aca79e3aeab840aeb2.zip |
minor white spacing
Diffstat (limited to '')
-rw-r--r-- | sys/sys/queue.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/queue.h b/sys/sys/queue.h index d955159e4dd..82ec5f7fa7c 100644 --- a/sys/sys/queue.h +++ b/sys/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 $ */ /* @@ -144,10 +144,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; \ |