diff options
author | vanhauser-thc <vh@thc.org> | 2022-07-04 21:57:42 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-07-04 21:57:42 +0200 |
commit | fc520a2bde7ace9610a72ca31d100cb1e87db3d1 (patch) | |
tree | 5ff45a6166505409d03f9b46b8ed5b0da5776980 | |
parent | 24458ae2852285a59c2ed22306180cc508109231 (diff) | |
download | afl++-fc520a2bde7ace9610a72ca31d100cb1e87db3d1.tar.gz |
fix
-rw-r--r-- | instrumentation/SanitizerCoverageLTO.so.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/SanitizerCoverageLTO.so.cc b/instrumentation/SanitizerCoverageLTO.so.cc index c0626c3f..f976f48a 100644 --- a/instrumentation/SanitizerCoverageLTO.so.cc +++ b/instrumentation/SanitizerCoverageLTO.so.cc @@ -921,7 +921,7 @@ bool ModuleSanitizerCoverageLTO::instrumentModule( std::string outstring; fprintf(stderr, "%s: length %zu/%zu \"", FuncName.c_str(), optLen, thestring.length()); - for (uint16t_t i = 0; i < (uint16_t)thestring.length(); i++) { + for (uint16_t i = 0; i < (uint16_t)thestring.length(); i++) { uint8_t c = thestring[i]; if (c <= 32 || c >= 127) |