diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-05-16 23:17:32 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-05-16 23:17:32 +0000 |
commit | e898d4911f05b143546ca2f49ce6931efafa17bc (patch) | |
tree | 664595c182d7431a5531688ba25280bc952b20fe /src/stable/lzma.cpp | |
parent | a24a1aab57af0b7dd883df486194abef0d3c62c3 (diff) | |
download | libbu++-e898d4911f05b143546ca2f49ce6931efafa17bc.tar.gz libbu++-e898d4911f05b143546ca2f49ce6931efafa17bc.tar.bz2 libbu++-e898d4911f05b143546ca2f49ce6931efafa17bc.tar.xz libbu++-e898d4911f05b143546ca2f49ce6931efafa17bc.zip |
Lzma was still printing debugging on "inflate".
Diffstat (limited to '')
-rw-r--r-- | src/stable/lzma.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stable/lzma.cpp b/src/stable/lzma.cpp index f4d5ebd..9df8f57 100644 --- a/src/stable/lzma.cpp +++ b/src/stable/lzma.cpp | |||
@@ -141,8 +141,8 @@ Bu::size Bu::Lzma::read( void *pData, Bu::size nBytes ) | |||
141 | for(;;) | 141 | for(;;) |
142 | { | 142 | { |
143 | int ret = lzma_code( pState, LZMA_RUN ); | 143 | int ret = lzma_code( pState, LZMA_RUN ); |
144 | printf("inflate returned %d; avail in=%d, out=%d\n", ret, | 144 | // printf("inflate returned %d; avail in=%d, out=%d\n", ret, |
145 | pState->avail_in, pState->avail_out ); | 145 | // pState->avail_in, pState->avail_out ); |
146 | 146 | ||
147 | nReadTotal += nRead-pState->avail_out; | 147 | nReadTotal += nRead-pState->avail_out; |
148 | 148 | ||