aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2020-10-20 11:53:12 +0200
committerMarc André Tanner <mat@brain-dump.org>2020-10-20 11:53:12 +0200
commit1e8a84cb075abcdc1c82927f78a1c81b9303e3ca (patch)
tree9f945d5a07fa67873c71e8524e1ac359f59c3b36
parentc42fec016dadb42d4b775e57b80753ccfe10aab9 (diff)
downloadvis-1e8a84cb075abcdc1c82927f78a1c81b9303e3ca.tar.gz
vis-1e8a84cb075abcdc1c82927f78a1c81b9303e3ca.tar.xz
test/core: fix relative #include directive
The correct location is ensured by specifying the desired include directory (-I flag) to the compiler driver.
-rw-r--r--core/array-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/array-test.c b/core/array-test.c
index b96f26d..748277f 100644
--- a/core/array-test.c
+++ b/core/array-test.c
@@ -6,7 +6,7 @@
#include <errno.h>
#include "tap.h"
#include "array.h"
-#include "../../util.h"
+#include "util.h"
typedef struct {
char key[64];