diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-03-10 22:04:05 +0100 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-03-10 22:04:05 +0100 |
commit | cc1d6b33b1524d52b21a6e9794ee6b0d6a2a9d50 (patch) | |
tree | 717c62b52076b37cb9d4e4efc9f33cf09dea723b /src/afl-gotcpu.c | |
parent | 2832cb643d90ff6bad7a6ba4ff139988f10b171a (diff) | |
download | afl++-cc1d6b33b1524d52b21a6e9794ee6b0d6a2a9d50.tar.gz |
unified pointer placement
Diffstat (limited to 'src/afl-gotcpu.c')
-rw-r--r-- | src/afl-gotcpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-gotcpu.c b/src/afl-gotcpu.c index 31455b66..70ed4dbc 100644 --- a/src/afl-gotcpu.c +++ b/src/afl-gotcpu.c @@ -129,7 +129,7 @@ repeat_loop: /* Do the benchmark thing. */ -int main(int argc, char** argv) { +int main(int argc, char **argv) { if (argc > 1) { @@ -165,7 +165,7 @@ int main(int argc, char** argv) { CPU_ZERO(&c); CPU_SET(i, &c); #elif defined(__NetBSD__) - cpuset_t* c; + cpuset_t *c; c = cpuset_create(); if (c == NULL) PFATAL("cpuset_create failed"); |