diff options
author | Martin Willi <martin@strongswan.org> | 2005-12-06 16:46:39 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-12-06 16:46:39 +0000 |
commit | a6cbf648312606089d352b8d3dda4ada66445603 (patch) | |
tree | 214a87d1d8f9633e564ba8f92b5da5cb1dd72497 /Source/charon/queues/event_queue.c | |
parent | 3febcf15f0cba8b17ab3bdb67c3d0864ef61080c (diff) | |
download | strongswan-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.c | 4 |
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); |