| 241 | } |
| 242 | |
| 243 | int git_deflate_end_gently(git_zstream *strm) |
| 244 | { |
| 245 | int status; |
| 246 | |
| 247 | zlib_pre_call(strm); |
| 248 | status = deflateEnd(&strm->z); |
| 249 | zlib_post_call(strm, status); |
| 250 | return status; |
| 251 | } |
| 252 | |
| 253 | int git_deflate(git_zstream *strm, int flush) |
| 254 | { |
no test coverage detected