diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-05-02 07:09:25 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-05-02 07:09:25 (GMT) |
commit | 7bfce244343f0d6405fa38b29c20f066cce2269a (patch) | |
tree | 82d3265117f022bc05ba029971dd6f8daf90f6b2 | |
parent | 1db97f7a2cf1f1fe1b892fcfa78d8fdf187adf0a (diff) |
Changed ulong to uLong to avoid compilation error on OSX
-rw-r--r-- | src/lib/tng_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tng_io.c b/src/lib/tng_io.c index 071629f..3b7dd51 100644 --- a/src/lib/tng_io.c +++ b/src/lib/tng_io.c @@ -3613,7 +3613,7 @@ static tng_function_status tng_gzip_compress(tng_trajectory_t tng_data, { Bytef *dest; char *temp; - ulong max_len, stat; + uLong max_len, stat; max_len = compressBound(len); dest = malloc(max_len); |