From 1492fa526e1d62bd2f148b3ad337c5bb1f4bd86d Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 24 Nov 2018 04:25:00 +0900 Subject: [PATCH] basic/list: add missing header Some macros use assert() which is (re)defined in macro.h --- src/basic/list.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/basic/list.h b/src/basic/list.h index 040680c30ad..b6132c21dfb 100644 --- a/src/basic/list.h +++ b/src/basic/list.h @@ -1,6 +1,8 @@ /* SPDX-License-Identifier: LGPL-2.1+ */ #pragma once +#include "macro.h" + /* The head of the linked list. Use this in the structure that shall * contain the head of the linked list */ #define LIST_HEAD(t,name) \ -- 2.47.3