diff options
author | van Hauser <vh@thc.org> | 2020-02-29 14:23:44 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-02-29 14:23:44 +0100 |
commit | 6730b6a15ad102ee988614202147bf606e1b7fd5 (patch) | |
tree | 8b74c9f22b1a51270f34a209f69013b8762c320a /src/afl-tmin.c | |
parent | 6e08be1d0b77bf51db8f847b65754727855e444e (diff) | |
download | afl++-6730b6a15ad102ee988614202147bf606e1b7fd5.tar.gz |
code-format, env.md fixes and adding -hh for env usage display into afl-fuzz and Makefile
Diffstat (limited to 'src/afl-tmin.c')
-rw-r--r-- | src/afl-tmin.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/afl-tmin.c b/src/afl-tmin.c index 156dc8af..f6878903 100644 --- a/src/afl-tmin.c +++ b/src/afl-tmin.c @@ -903,9 +903,11 @@ static void set_up_environment(void) { } if (qemu_preload) - buf = alloc_printf("%s,LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", qemu_preload, afl_preload, afl_preload); + buf = alloc_printf("%s,LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", + qemu_preload, afl_preload, afl_preload); else - buf = alloc_printf("LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", afl_preload, afl_preload); + buf = alloc_printf("LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", + afl_preload, afl_preload); setenv("QEMU_SET_ENV", buf, 1); |