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 | |
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-- | default.bld | 2 | ||||
-rw-r--r-- | src/stable/lzma.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/default.bld b/default.bld index b828713..56634fe 100644 --- a/default.bld +++ b/default.bld | |||
@@ -305,7 +305,7 @@ target PKG_BASE + ".xz" | |||
305 | display "xz"; | 305 | display "xz"; |
306 | profile "build" | 306 | profile "build" |
307 | { | 307 | { |
308 | execute("xz -9 < ${INPUT} > ${OUTPUT}"); | 308 | execute("xz -9vv < ${INPUT} > ${OUTPUT}"); |
309 | } | 309 | } |
310 | } | 310 | } |
311 | 311 | ||
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 | ||