From: Pavel P Date: Fri, 13 Jan 2023 18:23:07 +0000 (+0300) Subject: Make sure inflate_p.h is fully guarded by header guard X-Git-Tag: 2.1.0-beta1~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7659b386a6b657cb47c06c7c59d1b72f547da9c9;p=thirdparty%2Fzlib-ng.git Make sure inflate_p.h is fully guarded by header guard --- diff --git a/inflate_p.h b/inflate_p.h index e3daae1e1..27b610277 100644 --- a/inflate_p.h +++ b/inflate_p.h @@ -125,8 +125,6 @@ bits -= bits & 7; \ } while (0) -#endif - /* Set mode=BAD and prepare error message */ #define SET_BAD(errmsg) \ do { \ @@ -208,3 +206,5 @@ static inline uint8_t* chunkcopy_safe(uint8_t *out, uint8_t *from, uint64_t len, return out; } + +#endif