From ff3b4fbb54d2c8db4e2d959b885f6f0b96e1298a Mon Sep 17 00:00:00 2001 From: Arnaud de Turckheim Date: Thu, 7 May 2015 16:55:20 +0200 Subject: [PATCH] fix ietf/rtcp include guard --- ietf/rtcp.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ietf/rtcp.h b/ietf/rtcp.h index ed8e039..8ae65e4 100644 --- a/ietf/rtcp.h +++ b/ietf/rtcp.h @@ -1,5 +1,5 @@ -#ifndef RTCP_H_ -# define RTCP_H_ +#ifndef __BITSTREAM_IETF_RTCP_H__ +# define __BITSTREAM_IETF_RTCP_H__ # include @@ -68,5 +68,4 @@ static inline void rtcp_sr_set_octet_count(uint8_t *p_rtcp_sr, p_rtcp_sr[27] = octet_count & 0xff; } - -#endif /* !RTCP_H_ */ +#endif /* !__BITSTREAM_IETF_RTCP_H__ */