diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-05-26 17:04:59 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-05-30 21:29:44 +0200 |
commit | a0fa24f92fddf638a3d064389199599d6b5e9a5b (patch) | |
tree | f9c87d4152d0cec505b4d869366ed777c7068625 /deflate_p.h | |
parent | 5518060c399519ea0ab11deba8635e55e9e14cd9 (diff) |
Remove IPos typedef which also helps to reduce casting warnings.
Diffstat (limited to 'deflate_p.h')
-rw-r--r-- | deflate_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deflate_p.h b/deflate_p.h index 6983902..e9e6479 100644 --- a/deflate_p.h +++ b/deflate_p.h @@ -12,7 +12,7 @@ /* Forward declare common non-inlined functions declared in deflate.c */ #ifdef ZLIB_DEBUG -void check_match(deflate_state *s, IPos start, IPos match, int length); +void check_match(deflate_state *s, Pos start, Pos match, int length); #else #define check_match(s, start, match, length) #endif |