diff options
author | van Hauser <vh@thc.org> | 2021-01-17 15:18:20 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2021-01-17 15:18:20 +0100 |
commit | c71ce79963ffd3e1203d1078b8a60f91c4ecebf1 (patch) | |
tree | 0ba00a7276a25373ad8ba6582843eb5cb3303ce6 /instrumentation/afl-compiler-rt.o.c | |
parent | a0e884cf8bffe1a0394d106375f6a23edd2b60e6 (diff) | |
download | afl++-c71ce79963ffd3e1203d1078b8a60f91c4ecebf1.tar.gz |
fix colorization
Diffstat (limited to 'instrumentation/afl-compiler-rt.o.c')
-rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index 5d75af78..bbec52f9 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -1209,7 +1209,8 @@ void __sanitizer_cov_trace_pc_guard_init(uint32_t *start, uint32_t *stop) { void __cmplog_ins_hook1(uint8_t arg1, uint8_t arg2, uint8_t attr) { - // fprintf(stderr, "hook1 arg0=%02x arg1=%02x attr=%u\n", arg1, arg2, attr); + // fprintf(stderr, "hook1 arg0=%02x arg1=%02x attr=%u\n", + // (u8) arg1, (u8) arg2, attr); if (unlikely(!__afl_cmp_map)) return; |