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

@@ -71,7 +71,7 @@ thd_start(void *arg) {
"Resetting local data should have no effect on tsd");
free(p);
return (NULL);
return NULL;
}
TEST_BEGIN(test_tsd_main_thread) {
@@ -95,11 +95,11 @@ main(void) {
/* Core tsd bootstrapping must happen prior to data_tsd_boot(). */
if (nallocx(1, 0) == 0) {
malloc_printf("Initialization error");
return (test_status_fail);
return test_status_fail;
}
data_tsd_boot();
return (test(
return test(
test_tsd_main_thread,
test_tsd_sub_thread));
test_tsd_sub_thread);
}