diff options
Diffstat (limited to 'src/libhydra/attributes')
-rw-r--r-- | src/libhydra/attributes/attribute_handler.h | 2 | ||||
-rw-r--r-- | src/libhydra/attributes/attribute_manager.c | 2 | ||||
-rw-r--r-- | src/libhydra/attributes/attribute_provider.h | 2 | ||||
-rw-r--r-- | src/libhydra/attributes/mem_pool.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/libhydra/attributes/attribute_handler.h b/src/libhydra/attributes/attribute_handler.h index 6014ef0fa..91fa4e5b0 100644 --- a/src/libhydra/attributes/attribute_handler.h +++ b/src/libhydra/attributes/attribute_handler.h @@ -23,7 +23,7 @@ #include <chunk.h> #include <utils/identification.h> -#include <utils/linked_list.h> +#include <collections/linked_list.h> #include "attributes.h" diff --git a/src/libhydra/attributes/attribute_manager.c b/src/libhydra/attributes/attribute_manager.c index 000d2e082..dd3963b7f 100644 --- a/src/libhydra/attributes/attribute_manager.c +++ b/src/libhydra/attributes/attribute_manager.c @@ -16,7 +16,7 @@ #include "attribute_manager.h" #include <debug.h> -#include <utils/linked_list.h> +#include <collections/linked_list.h> #include <threading/rwlock.h> typedef struct private_attribute_manager_t private_attribute_manager_t; diff --git a/src/libhydra/attributes/attribute_provider.h b/src/libhydra/attributes/attribute_provider.h index 82d0ee3c2..adfd4a516 100644 --- a/src/libhydra/attributes/attribute_provider.h +++ b/src/libhydra/attributes/attribute_provider.h @@ -23,7 +23,7 @@ #include <networking/host.h> #include <utils/identification.h> -#include <utils/linked_list.h> +#include <collections/linked_list.h> typedef struct attribute_provider_t attribute_provider_t; diff --git a/src/libhydra/attributes/mem_pool.c b/src/libhydra/attributes/mem_pool.c index 1e150c794..1c5ea53de 100644 --- a/src/libhydra/attributes/mem_pool.c +++ b/src/libhydra/attributes/mem_pool.c @@ -17,8 +17,8 @@ #include "mem_pool.h" #include <debug.h> -#include <utils/hashtable.h> -#include <utils/linked_list.h> +#include <collections/hashtable.h> +#include <collections/linked_list.h> #include <threading/mutex.h> #define POOL_LIMIT (sizeof(uintptr_t)*8) |