From ae2053fed8ee0348e6dc51025dacc5c56b21d927 Mon Sep 17 00:00:00 2001 From: Godfrey Chung Date: Thu, 27 Aug 2020 15:31:38 +0800 Subject: [PATCH] Use "buffer.h" instead of buffer.c should include buffer.h directly from current directory instead of including it from system directory. --- src/openct/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openct/buffer.c b/src/openct/buffer.c index db986843..3b779ab9 100644 --- a/src/openct/buffer.c +++ b/src/openct/buffer.c @@ -10,7 +10,7 @@ #include #endif -#include +#include "buffer.h" void ct_buf_init(ct_buf_t *bp, void *mem, size_t len)