diff options
author | vanhauser-thc <vh@thc.org> | 2023-02-04 14:09:50 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-02-04 14:09:50 +0100 |
commit | 53c19a807c701760af577cea1f44916d9133a971 (patch) | |
tree | 092912b429bdb6741e0eff5f1c10c6149f382025 /src/afl-gotcpu.c | |
parent | 3a6dea420fcf05cc2abff4199e35cb86316c961c (diff) | |
download | afl++-53c19a807c701760af577cea1f44916d9133a971.tar.gz |
code indent
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 1762cfe2..fd9e9f54 100644 --- a/src/afl-gotcpu.c +++ b/src/afl-gotcpu.c @@ -217,8 +217,8 @@ int main(int argc, char **argv) { const char *error_code = "Unkown error code"; if (errno == EFAULT) error_code = "EFAULT"; if (errno == EINVAL) error_code = "EINVAL"; - if (errno == EPERM) error_code = "EPERM"; - if (errno == ESRCH) error_code = "ESRCH"; + if (errno == EPERM) error_code = "EPERM"; + if (errno == ESRCH) error_code = "ESRCH"; PFATAL("sched_setaffinity failed for cpu %d, error: %s", i, error_code); |