about summary refs log tree commit diff
path: root/src/afl-gotcpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/afl-gotcpu.c')
-rw-r--r--src/afl-gotcpu.c4
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");