Remove extraneous parens around return arguments.

This resolves #540.
This commit is contained in:
Jason Evans
2017-01-19 18:15:45 -08:00
parent c4c2592c83
commit f408643a4c
104 changed files with 1161 additions and 1168 deletions

View File

@@ -94,7 +94,7 @@ thd_start(void *varg) {
mallctl_thread_name_set(thread_name);
mallctl_thread_name_set("");
return (NULL);
return NULL;
}
TEST_BEGIN(test_prof_thread_name_threaded) {
@@ -118,7 +118,7 @@ TEST_END
int
main(void) {
return (test(
return test(
test_prof_thread_name_validation,
test_prof_thread_name_threaded));
test_prof_thread_name_threaded);
}