summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2010-02-18 17:46:56 -0500
committerNick Mathewson <nickm@torproject.org>2010-02-18 17:46:56 -0500
commite5cf98795e3526fadd9e779d4368ed6fbafd6e91 (patch)
tree6f18d5a8fe7610bf0e9c04e759247846e19b0ca9 /compat
parente5bbd40ad7f66f80170454683342076ec1e92d31 (diff)
downloadlibevent-e5cf98795e3526fadd9e779d4368ed6fbafd6e91.tar.gz
Clean up formatting: remove trailing spaces
Diffstat (limited to 'compat')
-rw-r--r--compat/sys/queue.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/compat/sys/queue.h b/compat/sys/queue.h
index c0956ddc..7bb87c29 100644
--- a/compat/sys/queue.h
+++ b/compat/sys/queue.h
@@ -36,7 +36,7 @@
#define _SYS_QUEUE_H_
/*
- * This file defines five types of data structures: singly-linked lists,
+ * This file defines five types of data structures: singly-linked lists,
* lists, simple queues, tail queues, and circular queues.
*
*
@@ -89,7 +89,7 @@
struct name { \
struct type *slh_first; /* first element */ \
}
-
+
#define SLIST_HEAD_INITIALIZER(head) \
{ NULL }
@@ -287,8 +287,8 @@ struct { \
struct type **tqe_prev; /* address of previous next element */ \
}
-/*
- * tail queue access methods
+/*
+ * tail queue access methods
*/
#define TAILQ_FIRST(head) ((head)->tqh_first)
#define TAILQ_END(head) NULL
@@ -391,7 +391,7 @@ struct { \
}
/*
- * Circular queue access methods
+ * Circular queue access methods
*/
#define CIRCLEQ_FIRST(head) ((head)->cqh_first)
#define CIRCLEQ_LAST(head) ((head)->cqh_last)