standardize on "return foo;" rather than "return(foo);" or "return (foo);"
This commit is contained in:
@@ -292,7 +292,7 @@ bad:
|
||||
warningx("%s: %s", errstr,
|
||||
errno == EAGAIN ? "too many processes" : strerror(errno));
|
||||
if (noexit)
|
||||
return(0);
|
||||
return 0;
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@@ -517,7 +517,7 @@ bad:
|
||||
warningx("%s: %s", errstr,
|
||||
errno == EAGAIN ? "too many processes" : strerror(errno));
|
||||
if (noexit)
|
||||
return(0);
|
||||
return 0;
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@@ -748,7 +748,7 @@ bad:
|
||||
warningx("%s: %s", errstr,
|
||||
errno == EAGAIN ? "too many processes" : strerror(errno));
|
||||
if (noexit)
|
||||
return(0);
|
||||
return 0;
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@@ -882,7 +882,7 @@ bad:
|
||||
warningx("%s: %s", errstr,
|
||||
errno == EAGAIN ? "too many processes" : strerror(errno));
|
||||
if (noexit)
|
||||
return(0);
|
||||
return 0;
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user