From 0d0409b100fbb84ee8303c5dca376aca0f187745 Mon Sep 17 00:00:00 2001 From: Gavin Ray Date: Mon, 5 Dec 2022 02:07:17 +0000 Subject: [PATCH] rculfhash: Include rculfhash-internal.h from local directory Use double quotes rather than angle brackets to include this local header file. This fixes build scenarios where the liburcu build is used from cmake. Signed-off-by: Mathieu Desnoyers Change-Id: Iad6c9765ecc409c8df3a659975c97a3c068d5c0a --- src/rculfhash-mm-chunk.c | 2 +- src/rculfhash-mm-order.c | 2 +- src/rculfhash.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rculfhash-mm-chunk.c b/src/rculfhash-mm-chunk.c index 9273ac9..76ec1bb 100644 --- a/src/rculfhash-mm-chunk.c +++ b/src/rculfhash-mm-chunk.c @@ -22,7 +22,7 @@ #include #include -#include +#include "rculfhash-internal.h" static void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order) diff --git a/src/rculfhash-mm-order.c b/src/rculfhash-mm-order.c index a182a83..bbc4015 100644 --- a/src/rculfhash-mm-order.c +++ b/src/rculfhash-mm-order.c @@ -22,7 +22,7 @@ */ #include -#include +#include "rculfhash-internal.h" static void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order) diff --git a/src/rculfhash.c b/src/rculfhash.c index a41cac8..5391d28 100644 --- a/src/rculfhash.c +++ b/src/rculfhash.c @@ -274,10 +274,10 @@ #include #include #include -#include #include #include #include +#include "rculfhash-internal.h" #include "workqueue.h" #include "urcu-die.h" #include "urcu-utils.h" -- 2.34.1