From 9e0bc3e63c924037fb483f3b1f08e5348399f8a2 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 30 Oct 2024 09:33:59 -0400 Subject: [PATCH] build: Fix missing include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the following build error: profiles/input/manager.c:102:4: error: implicit declaration of function ‘free’ [-Werror=implicit-function-declaration] 102 | free(uhid_enabled); | ^~~~ --- profiles/input/manager.c | 1 + 1 file changed, 1 insertion(+) diff --git a/profiles/input/manager.c b/profiles/input/manager.c index 1c4442ef8..d1accc24f 100644 --- a/profiles/input/manager.c +++ b/profiles/input/manager.c @@ -14,6 +14,7 @@ #include #include +#include #include "lib/bluetooth.h" #include "lib/sdp.h" -- 2.47.3