diff options
author | Jason Evans <jasone@canonware.com> | 2017-01-20 02:15:45 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2017-01-21 05:43:07 (GMT) |
commit | f408643a4c90d51ab8ddc1d68610650d5db87edf (patch) | |
tree | b12815c633d56b792ab0171e923c6c5ab68b349c /test/stress | |
parent | c4c2592c834d8a37beb0a0d53842095160cbf9ee (diff) | |
download | jemalloc-f408643a4c90d51ab8ddc1d68610650d5db87edf.zip jemalloc-f408643a4c90d51ab8ddc1d68610650d5db87edf.tar.gz jemalloc-f408643a4c90d51ab8ddc1d68610650d5db87edf.tar.bz2 |
Remove extraneous parens around return arguments.
This resolves #540.
Diffstat (limited to 'test/stress')
-rw-r--r-- | test/stress/microbench.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/stress/microbench.c b/test/stress/microbench.c index 3b7e966..6ed1500 100644 --- a/test/stress/microbench.c +++ b/test/stress/microbench.c @@ -156,10 +156,10 @@ TEST_END int main(void) { - return (test( + return test( test_malloc_vs_mallocx, test_free_vs_dallocx, test_dallocx_vs_sdallocx, test_mus_vs_sallocx, - test_sallocx_vs_nallocx)); + test_sallocx_vs_nallocx); } |