diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2017-10-03 00:48:03 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2017-10-03 03:44:43 (GMT) |
commit | 8a7ee3014cea09e13e605bf47c11943df5a5eb2b (patch) | |
tree | d1eb860c820c573c85194df4ab46a66001c7e726 /test | |
parent | 7a8bc7172b17e219b3603e99c8da44efb283e652 (diff) | |
download | jemalloc-8a7ee3014cea09e13e605bf47c11943df5a5eb2b.zip jemalloc-8a7ee3014cea09e13e605bf47c11943df5a5eb2b.tar.gz jemalloc-8a7ee3014cea09e13e605bf47c11943df5a5eb2b.tar.bz2 |
Logging: capitalize log macro.
Dodge a name-conflict with the math.h logarithm function. D'oh.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/log.c b/test/unit/log.c index 3c1a208..a52bd73 100644 --- a/test/unit/log.c +++ b/test/unit/log.c @@ -176,7 +176,7 @@ TEST_END */ TEST_BEGIN(test_log_only_format_string) { if (false) { - log("log_str", "No arguments follow this format string."); + LOG("log_str", "No arguments follow this format string."); } } TEST_END |