From 524bdc95e7e803cf26d8f828c9bf32ff068a0b84 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 27 Aug 2020 15:46:28 +0200 Subject: [PATCH] basic: make sure we include inttypes.h when we use its types --- src/basic/cap-list.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/basic/cap-list.h b/src/basic/cap-list.h index ab41924d9cc..4bfb1a355b4 100644 --- a/src/basic/cap-list.h +++ b/src/basic/cap-list.h @@ -1,6 +1,8 @@ /* SPDX-License-Identifier: LGPL-2.1+ */ #pragma once +#include + const char *capability_to_name(int id); int capability_from_name(const char *name); int capability_list_length(void); -- 2.47.3