diff options
author | David CARLIER <devnexen@gmail.com> | 2020-05-09 23:21:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 00:21:26 +0200 |
commit | 515de0d68d30a4e69fe5fb971c622391185fc4ba (patch) | |
tree | 0a69ca39b459d5ecd6c59538f2766c73cb79f9e5 /src/afl-as.c | |
parent | 1eeb6785adb1daba4970c923a3e9344c294deebd (diff) | |
download | afl++-515de0d68d30a4e69fe5fb971c622391185fc4ba.tar.gz |
Illumos biuld fix (#357)
Diffstat (limited to 'src/afl-as.c')
-rw-r--r-- | src/afl-as.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-as.c b/src/afl-as.c index 486a6afa..cf7f8bb6 100644 --- a/src/afl-as.c +++ b/src/afl-as.c @@ -233,7 +233,7 @@ static void edit_params(int argc, char **argv) { } modified_file = - alloc_printf("%s/.afl-%u-%u.s", tmp_dir, getpid(), (u32)time(NULL)); + alloc_printf("%s/.afl-%u-%u.s", tmp_dir, (u32)getpid(), (u32)time(NULL)); wrap_things_up: |