From ba573fd2308d6e5a614ca693f0d288a657dc4831 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 29 Apr 2024 01:11:33 +0530 Subject: [PATCH] Quick fix to make compilation with VERBOSE=2 work --- test/lib/test-darr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/lib/test-darr.h b/test/lib/test-darr.h index d5eaacd..d1659dd 100644 --- a/test/lib/test-darr.h +++ b/test/lib/test-darr.h @@ -150,8 +150,8 @@ void test_lib_darr_append_byte(void) { darr_t darr = {0}; #if VERBOSE > 1 - INFO(__func__, "Testing (%lu, %lu) -> darr[%lu] = '%c'\n", used, available, - used, byte); + INFO(__func__, "Testing (%lu, %lu) -> darr[%lu] = '%c'\n", tests[i].used, + tests[i].available, tests[i].used, tests[i].byte); #endif darr_init(&darr, tests[i].available); darr.used = tests[i].used;