mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-31 15:38:08 +03:00
Fix shadowed variable usage.
Verified with EXTRA_CFLAGS=-Wshadow.
This commit is contained in:
parent
bd70d8fc0f
commit
d038160f3b
26 changed files with 119 additions and 120 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue