From e898d4911f05b143546ca2f49ce6931efafa17bc Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 16 May 2012 23:17:32 +0000 Subject: Lzma was still printing debugging on "inflate". --- src/stable/lzma.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stable') 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 ) for(;;) { int ret = lzma_code( pState, LZMA_RUN ); - printf("inflate returned %d; avail in=%d, out=%d\n", ret, - pState->avail_in, pState->avail_out ); +// printf("inflate returned %d; avail in=%d, out=%d\n", ret, +// pState->avail_in, pState->avail_out ); nReadTotal += nRead-pState->avail_out; -- cgit v1.2.3