From patchwork Thu Jul 9 17:48:31 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ismael Luceno X-Patchwork-Id: 11654831 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 3C24160D for ; Thu, 9 Jul 2020 17:47:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2A8F92080D for ; Thu, 9 Jul 2020 17:47:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728757AbgGIRrF (ORCPT ); Thu, 9 Jul 2020 13:47:05 -0400 Received: from iodev.co.uk ([193.29.56.124]:42380 "EHLO iodev.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728625AbgGIRq7 (ORCPT ); Thu, 9 Jul 2020 13:46:59 -0400 From: Ismael Luceno To: linux-media@vger.kernel.org Cc: Ismael Luceno Subject: [PATCH] keytable: Fix missing inclusion of argp.h Date: Thu, 9 Jul 2020 19:48:31 +0200 Message-Id: <20200709174831.14134-1-ismael@iodev.co.uk> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org error_t is only defined by argp.h on non-glibc systems. Signed-off-by: Ismael Luceno --- utils/keytable/bpf_load.c | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/keytable/bpf_load.c b/utils/keytable/bpf_load.c index 9f64cf4e91e8..7ae9af4a57be 100644 --- a/utils/keytable/bpf_load.c +++ b/utils/keytable/bpf_load.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "keymap.h" #include "bpf.h" #include "bpf_load.h"