[libFuzzer] reduce the size of artifacts printed on the screen

llvm-svn: 250565
This commit is contained in:
Kostya Serebryany 2015-10-16 22:47:20 +00:00
parent b91c62b1f3
commit a9da9b48ef
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
#include <algorithm>
namespace fuzzer {
static const size_t kMaxUnitSizeToPrint = 4096;
static const size_t kMaxUnitSizeToPrint = 256;
// Only one Fuzzer per process.
static Fuzzer *F;