aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--default.bld2
-rw-r--r--src/stable/lzma.cpp4
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