code indent

This commit is contained in:
vanhauser-thc
2023-02-04 14:09:50 +01:00
parent 3a6dea420f
commit 53c19a807c
2 changed files with 66 additions and 40 deletions

View File

@ -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);