From 68b1e5f26219bfb931e1372b46d85d654a3a2579 Mon Sep 17 00:00:00 2001 From: Konstantin Isakov Date: Fri, 28 May 2010 19:04:12 +0400 Subject: [PATCH] Don't output abbreviations to console when indexing Dsl files. --- dsl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsl.cc b/dsl.cc index 8ec5661f..ef7ffdf7 100644 --- a/dsl.cc +++ b/dsl.cc @@ -1495,7 +1495,7 @@ vector< sptr< Dictionary::Class > > makeDictionaries( for( map< string, string >::const_iterator i = abrv.begin(); i != abrv.end(); ++i ) { - printf( "%s:%s\n", i->first.c_str(), i->second.c_str() ); +// printf( "%s:%s\n", i->first.c_str(), i->second.c_str() ); sz = i->first.size(); chunks.addToBlock( &sz, sizeof( uint32_t ) );