diff options
author | Jason Evans <je@fb.com> | 2014-05-01 22:51:30 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2014-05-01 22:51:30 (GMT) |
commit | a344dd01c74a7e385087819046105f689931905d (patch) | |
tree | 3f2d10bfe66642e4a7e29f7dba81cd542ded7990 /test/include | |
parent | 6f001059aa33d77a3cb7799002044faf8dd08fc0 (diff) | |
download | jemalloc-a344dd01c74a7e385087819046105f689931905d.zip jemalloc-a344dd01c74a7e385087819046105f689931905d.tar.gz jemalloc-a344dd01c74a7e385087819046105f689931905d.tar.bz2 |
Fix coding sytle nits.
Diffstat (limited to 'test/include')
-rw-r--r-- | test/include/test/test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/include/test/test.h b/test/include/test/test.h index a32ec07..161fafd 100644 --- a/test/include/test/test.h +++ b/test/include/test/test.h @@ -323,7 +323,7 @@ void test_skip(const char *format, ...) JEMALLOC_ATTR(format(printf, 1, 2)); void test_fail(const char *format, ...) JEMALLOC_ATTR(format(printf, 1, 2)); /* For private use by macros. */ -test_status_t p_test(test_t* t, ...); +test_status_t p_test(test_t *t, ...); void p_test_init(const char *name); void p_test_fini(void); void p_test_fail(const char *prefix, const char *message); |