summaryrefslogtreecommitdiffstats
path: root/test/src/test.c
diff options
context:
space:
mode:
authorQi Wang <interwq@gwu.edu>2022-05-06 18:28:25 (GMT)
committerQi Wang <interwq@gwu.edu>2022-05-06 18:28:25 (GMT)
commit54eaed1d8b56b1aa528be3bdd1877e59c56fa90c (patch)
treee79620e0c00b1f8b6b698fbe74df6bae7d812ae2 /test/src/test.c
parentea6b3e973b477b8061e0076bb257dbd7f3faa756 (diff)
parent304c919829f9f340669b61fa64867cfe5dba8021 (diff)
downloadjemalloc-5.3.0.zip
jemalloc-5.3.0.tar.gz
jemalloc-5.3.0.tar.bz2
Merge branch 'dev'5.3.0
Diffstat (limited to 'test/src/test.c')
-rw-r--r--test/src/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/test.c b/test/src/test.c
index f97ce4d..4cd803e 100644
--- a/test/src/test.c
+++ b/test/src/test.c
@@ -87,8 +87,8 @@ test_fail(const char *format, ...) {
}
static const char *
-test_status_string(test_status_t test_status) {
- switch (test_status) {
+test_status_string(test_status_t current_status) {
+ switch (current_status) {
case test_status_pass: return "pass";
case test_status_skip: return "skip";
case test_status_fail: return "fail";