From 26273897884e04b0cfffac1064c3871ec7e8f89c Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Tue, 19 Sep 2017 15:38:02 +0200 Subject: [PATCH] test: fix include path for private header under src --- test/epicsThreadPoolTest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/epicsThreadPoolTest.c b/test/epicsThreadPoolTest.c index 6a4f3f435..b949ec9cd 100644 --- a/test/epicsThreadPoolTest.c +++ b/test/epicsThreadPoolTest.c @@ -8,7 +8,7 @@ #include "epicsThreadPool.h" /* included to allow tests to peek */ -#include "../../pool/poolPriv.h" +#include "../../src/pool/poolPriv.h" #include "testMain.h" #include "epicsUnitTest.h"