Codebase list pgpdump / 57b2598
Merge PR #25. Kazu Yamamoto 5 years ago
2 changed file(s) with 3 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
44 LIBS = @LIBS@
55 CFLAGS = @CFLAGS@ -O -Wall
66 LDFLAGS = @LDFLAGS@
7 CC = @CC@
78 VERSION = `git tag | tail -1 | sed -e 's/v//'`
89
910 RM = rm -f
275275 while (bz.avail_out != 0) {
276276 if (bz.avail_in == 0) {
277277 size = (*d_func2)(d_buf2, sizeof(d_buf2));
278 if (size == 0)
279 warn_exit("bzip2 no data for BZ2_bzDecompress");
278280 bz.next_in = (cast_t)d_buf2;
279281 bz.avail_in = size;
280282 }