diff options
author | hexcoder- <heiko@hexco.de> | 2021-01-04 15:14:20 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2021-01-04 15:14:20 +0100 |
commit | 33a7d6f1688856c050b0ac71ac1df4018e4d531c (patch) | |
tree | 9e2888ee429ff46ed59feedd39020e9c3bad5b55 /utils/qemu_persistent_hook | |
parent | c423aebb1a6987d8ca58175aee23bc08b611d4c8 (diff) | |
download | afl++-33a7d6f1688856c050b0ac71ac1df4018e4d531c.tar.gz |
code cleanups (from cppcheck)
Diffstat (limited to 'utils/qemu_persistent_hook')
-rw-r--r-- | utils/qemu_persistent_hook/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/qemu_persistent_hook/test.c b/utils/qemu_persistent_hook/test.c index afeff202..a0e815dc 100644 --- a/utils/qemu_persistent_hook/test.c +++ b/utils/qemu_persistent_hook/test.c @@ -2,7 +2,7 @@ int target_func(unsigned char *buf, int size) { - printf("buffer:%p, size:%p\n", buf, size); + printf("buffer:%p, size:%d\n", buf, size); switch (buf[0]) { case 1: |