Quick fix to make compilation with VERBOSE=2 work

This commit is contained in:
2024-04-29 01:11:33 +05:30
parent d88e297921
commit ba573fd230

View File

@@ -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;