From 0933f57e8eaea013e2efd466164ba83440f9697c Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Tue, 21 Sep 2021 11:18:26 +0200 Subject: [PATCH] common: include gvc/gvc.h in output.c E.g. attach_attrs used in output.c is declared in lib/gvc/gvc.h. This change is not strictly necessary since gvc/gvc.h is indirectly included through common/render.h anyway, but a direct inclusion is clearer and will avoid confusion when an upcoming commit removes a duplicated declaration of attach_attrs from utils.h. --- lib/common/output.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/common/output.c b/lib/common/output.c index 71c7bc7b6..1174b9ea2 100644 --- a/lib/common/output.c +++ b/lib/common/output.c @@ -10,6 +10,7 @@ #include #include +#include #include #include -- 2.40.0