diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-06-02 14:10:40 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-06-02 14:10:40 +0200 |
commit | 62306f5ce87916396f8245db508dff889894f54c (patch) | |
tree | 43b3e873639bc8e36f5cac67d4fb2dc5539b05c7 /unicorn_mode/samples/c | |
parent | ee14785f687d1fc99a16c4143a1fec0eba13afed (diff) | |
download | afl++-62306f5ce87916396f8245db508dff889894f54c.tar.gz |
minor fixes
Diffstat (limited to 'unicorn_mode/samples/c')
-rw-r--r-- | unicorn_mode/samples/c/harness.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unicorn_mode/samples/c/harness.c b/unicorn_mode/samples/c/harness.c index 18c59c3f..4bda6e2d 100644 --- a/unicorn_mode/samples/c/harness.c +++ b/unicorn_mode/samples/c/harness.c @@ -184,7 +184,7 @@ int main(int argc, char **argv, char **envp) { // Map memory. mem_map_checked(uc, BASE_ADDRESS, len, UC_PROT_ALL); - printf("Len: %lx", len); + printf("Len: %lx\n", len); fflush(stdout); // write machine code to be emulated to memory |