From 75d942e5690fa0181934789d25b8088c4a461f23 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann Date: Mon, 7 Jun 2021 21:02:23 +0200 Subject: Include errno.h in filter test The filter test is failing to build in the OSS-fuzz environment: ``` ../../src/spice-usbredir/tests/filter.c:63:38: error: use of undeclared identifier 'EINVAL' g_assert_cmpint(retval, ==, -EINVAL); ^ 1 error generated. ``` Signed-off-by: Michael Hanselmann --- tests/filter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/filter.c b/tests/filter.c index a85fe06..2ddd4c1 100644 --- a/tests/filter.c +++ b/tests/filter.c @@ -15,6 +15,7 @@ * License along with this library; if not, see . */ +#include #include #include #include -- cgit v1.2.3