diff options
| author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-05-23 07:01:35 -0700 |
|---|---|---|
| committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-06-09 22:40:36 +0200 |
| commit | fe69810c265858b7b4242663d51336726f4a98be (patch) | |
| tree | 2c8059436aaa790d741704210a8f9ec21d8b69f0 /test/example.c | |
| parent | 0b39a43490aea6024cc57bb577be58c675142d6d (diff) | |
| download | Project-Tick-fe69810c265858b7b4242663d51336726f4a98be.tar.gz Project-Tick-fe69810c265858b7b4242663d51336726f4a98be.zip | |
Use standard int types in zlib-ng api.
Diffstat (limited to 'test/example.c')
| -rw-r--r-- | test/example.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/example.c b/test/example.c index e94ee33f8b..a47155ffa1 100644 --- a/test/example.c +++ b/test/example.c @@ -83,9 +83,9 @@ void test_gzio(const char *fname, unsigned char *uncompr, z_size_t uncomprLen) { #else int err, read; size_t len = strlen(hello)+1; - size_t comprLen; + z_off64_t comprLen; gzFile file; - z_off_t pos; + z_off64_t pos; /* Write gz file with test data */ file = PREFIX(gzopen)(fname, "wb"); |
