aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/event_queue.c
diff options
context:
space:
mode:
Diffstat (limited to 'Source/charon/event_queue.c')
-rw-r--r--Source/charon/event_queue.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/charon/event_queue.c b/Source/charon/event_queue.c
index d086bf44f..a4dd5980d 100644
--- a/Source/charon/event_queue.c
+++ b/Source/charon/event_queue.c
@@ -26,7 +26,7 @@
#include <pthread.h>
#include <stdlib.h>
-
+#include "allocator.h"
#include "types.h"
#include "event_queue.h"
#include "linked_list.h"
@@ -85,7 +85,7 @@ static status_t event_destroy(event_t *event)
*/
static event_t *event_create(timeval_t time, job_t *job)
{
- event_t *this = allocator_alloc_thing(event_t, "event_t");
+ event_t *this = allocator_alloc_thing(event_t);
this->destroy = event_destroy;
@@ -361,7 +361,7 @@ event_queue_t *event_queue_create()
return NULL;
}
- private_event_queue_t *this = allocator_alloc_thing(private_event_queue_t, "private_event_queue_t");
+ private_event_queue_t *this = allocator_alloc_thing(private_event_queue_t);
if (this == NULL)
{
linked_list->destroy(linked_list);