aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/queues/event_queue.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2005-12-06 16:46:39 +0000
committerMartin Willi <martin@strongswan.org>2005-12-06 16:46:39 +0000
commita6cbf648312606089d352b8d3dda4ada66445603 (patch)
tree214a87d1d8f9633e564ba8f92b5da5cb1dd72497 /Source/charon/queues/event_queue.c
parent3febcf15f0cba8b17ab3bdb67c3d0864ef61080c (diff)
downloadstrongswan-a6cbf648312606089d352b8d3dda4ada66445603.tar.bz2
strongswan-a6cbf648312606089d352b8d3dda4ada66445603.tar.xz
- docs updated
Diffstat (limited to 'Source/charon/queues/event_queue.c')
-rw-r--r--Source/charon/queues/event_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/charon/queues/event_queue.c b/Source/charon/queues/event_queue.c
index c641a5a60..741fe1460 100644
--- a/Source/charon/queues/event_queue.c
+++ b/Source/charon/queues/event_queue.c
@@ -90,7 +90,7 @@ static event_t *event_create(timeval_t time, job_t *job)
typedef struct private_event_queue_t private_event_queue_t;
/**
- * @brief Private Variables and Functions of event_queue_t class.
+ * Private Variables and Functions of event_queue_t class.
*
*/
struct private_event_queue_t {
@@ -342,7 +342,7 @@ event_queue_t *event_queue_create()
this->public.add_relative = (void (*) (event_queue_t *event_queue, job_t *job, u_int32_t ms)) add_relative;
this->public.destroy = (void (*) (event_queue_t *event_queue)) event_queue_destroy;
- this->list = linked_list_create();;
+ this->list = linked_list_create();
pthread_mutex_init(&(this->mutex), NULL);
pthread_cond_init(&(this->condvar), NULL);