Show domain data only if verbose.

This commit is contained in:
Florian Pose 2008-07-07 07:59:07 +00:00
parent 77837ebefb
commit 9d6dad936a
1 changed files with 1 additions and 1 deletions

View File

@ -1202,7 +1202,7 @@ void Master::showDomain(unsigned int domainIndex)
<< domain.working_counter << "/"
<< domain.expected_working_counter << endl;
if (!domain.data_size)
if (!domain.data_size || verbosity != Verbose)
return;
processData = new unsigned char[domain.data_size];