aboutsummaryrefslogtreecommitdiff
path: root/src/stable
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable')
-rw-r--r--src/stable/lzma.cpp4
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