From 5deb6ccede7900ccd300dd74a5ac353eae0d3393 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Sat, 1 Jul 2023 21:42:10 +0200 Subject: [PATCH] pipewire: conf: add missing include guard --- src/pipewire/conf.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pipewire/conf.h b/src/pipewire/conf.h index 193634437..6031f3c44 100644 --- a/src/pipewire/conf.h +++ b/src/pipewire/conf.h @@ -2,6 +2,9 @@ /* SPDX-FileCopyrightText: Copyright © 2021 Wim Taymans */ /* SPDX-License-Identifier: MIT */ +#ifndef PIPEWIRE_CONF_H +#define PIPEWIRE_CONF_H + #include /** \defgroup pw_conf Configuration @@ -40,3 +43,5 @@ int pw_conf_section_match_rules(const struct spa_dict *conf, const char *section /** * \} */ + +#endif /* PIPEWIRE_CONF_H */