From: Christian Weisgerber Subject: Add missing to lib/utf8.c To: gameoftrees@openbsd.org Date: Sat, 19 Sep 2020 16:27:49 +0200 Another micro patch... Add missing include. lib/utf8.c includes got_error.h, which uses uint32_t when declaring got_error_uuid(). However, there is no preceding explicit include for . On OpenBSD it just happens to be pulled in by some other system header. ok? diff 6c13dcd2d0d730f9f9fc0fb0c42eb0f409216063 /home/naddy/got blob - 41c3f2e47158bafbf6229ab2c3b32dbb106c2e93 file + lib/utf8.c --- lib/utf8.c +++ lib/utf8.c @@ -15,6 +15,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include + #include #include #include -- Christian "naddy" Weisgerber naddy@mips.inka.de