diff options
Diffstat (limited to 'test/unit/prof_gdump.c')
-rw-r--r-- | test/unit/prof_gdump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/prof_gdump.c b/test/unit/prof_gdump.c index 0d8ec71..30320b7 100644 --- a/test/unit/prof_gdump.c +++ b/test/unit/prof_gdump.c @@ -15,7 +15,7 @@ prof_dump_open_intercept(bool propagate_err, const char *filename) { fd = open("/dev/null", O_WRONLY); assert_d_ne(fd, -1, "Unexpected open() failure"); - return (fd); + return fd; } TEST_BEGIN(test_gdump) { @@ -73,6 +73,6 @@ TEST_END int main(void) { - return (test( - test_gdump)); + return test( + test_gdump); } |