Fix coding sytle nits.

This commit is contained in:
Jason Evans 2014-05-01 15:51:30 -07:00
parent 6f001059aa
commit a344dd01c7
3 changed files with 7 additions and 7 deletions

View File

@ -1346,10 +1346,10 @@ je_valloc(size_t size)
* passed an extra argument for the caller return address, which will be * passed an extra argument for the caller return address, which will be
* ignored. * ignored.
*/ */
JEMALLOC_EXPORT void (* __free_hook)(void *ptr) = je_free; JEMALLOC_EXPORT void (*__free_hook)(void *ptr) = je_free;
JEMALLOC_EXPORT void *(* __malloc_hook)(size_t size) = je_malloc; JEMALLOC_EXPORT void *(*__malloc_hook)(size_t size) = je_malloc;
JEMALLOC_EXPORT void *(* __realloc_hook)(void *ptr, size_t size) = je_realloc; JEMALLOC_EXPORT void *(*__realloc_hook)(void *ptr, size_t size) = je_realloc;
JEMALLOC_EXPORT void *(* __memalign_hook)(size_t alignment, size_t size) = JEMALLOC_EXPORT void *(*__memalign_hook)(size_t alignment, size_t size) =
je_memalign; je_memalign;
#endif #endif

View File

@ -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)); void test_fail(const char *format, ...) JEMALLOC_ATTR(format(printf, 1, 2));
/* For private use by macros. */ /* 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_init(const char *name);
void p_test_fini(void); void p_test_fini(void);
void p_test_fail(const char *prefix, const char *message); void p_test_fail(const char *prefix, const char *message);

View File

@ -61,13 +61,13 @@ p_test_fini(void)
} }
test_status_t test_status_t
p_test(test_t* t, ...) p_test(test_t *t, ...)
{ {
test_status_t ret = test_status_pass; test_status_t ret = test_status_pass;
va_list ap; va_list ap;
va_start(ap, t); va_start(ap, t);
for (; t != NULL; t = va_arg(ap, test_t*)) { for (; t != NULL; t = va_arg(ap, test_t *)) {
t(); t();
if (test_status > ret) if (test_status > ret)
ret = test_status; ret = test_status;