From 53b92561cb1a815ca2f3622ad7ec4e27cf2c069d Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Wed, 18 Dec 2019 15:33:16 +0100 Subject: [PATCH] Add header file guard to avatar.h --- src/xmpp/avatar.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/xmpp/avatar.h b/src/xmpp/avatar.h index 142f0178..8f1415b6 100644 --- a/src/xmpp/avatar.h +++ b/src/xmpp/avatar.h @@ -33,7 +33,12 @@ * */ +#ifndef XMPP_AVATAR_H +#define XMPP_AVATAR_H + #include void avatar_pep_subscribe(void); bool avatar_get_by_nick(const char* nick); + +#endif