error.h is not a standard header, and none of the functions declared there are actually used by the code. This fixes the build on FreeBSD that doesn't have error.h
Signed-off-by: Roger Pau Monné <[email protected]> --- Build tested on both Linux and FreeBSD. The risk would be breaking the build, but it's already broken on FreeBSD so there's not much to lose. Build breakages on Linux will be spotted fast by either osstest of the gitlab build. --- tools/tests/resource/test-resource.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/tests/resource/test-resource.c b/tools/tests/resource/test-resource.c index a409a82f44..1caaa60e62 100644 --- a/tools/tests/resource/test-resource.c +++ b/tools/tests/resource/test-resource.c @@ -1,6 +1,5 @@ #include <err.h> #include <errno.h> -#include <error.h> #include <stdio.h> #include <string.h> #include <sys/mman.h> -- 2.29.2
