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: 65362 X-Patchwork-Delegate: sean@mess.org Received: from vger.kernel.org ([23.128.96.18]) by www.linuxtv.org with esmtp (Exim 4.92) (envelope-from ) id 1jtaYx-008Kef-TX; Thu, 09 Jul 2020 17:42:24 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728757AbgGIRrF (ORCPT + 1 other); 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 X-LSpam-Score: -2.4 (--) X-LSpam-Report: No, score=-2.4 required=5.0 tests=BAYES_00=-1.9,HEADER_FROM_DIFFERENT_DOMAINS=0.5,MAILING_LIST_MULTI=-1 autolearn=ham autolearn_force=no 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"