tests/checkasm/loopfilter: avoid printf format warning

Upstream checkasm adds a printf format attribute to report(), so we should
avoid directly passing the name string to silence a warning.
This commit is contained in:
Niklas Haas
2026-01-01 12:29:02 +01:00
parent b546257f77
commit 3374404179
+1 -1
View File
@@ -188,7 +188,7 @@ static void check_lpf_sb(loopfilter_sb_fn fn, const char *const name,
b4_stride, &lut, n_blks HIGHBD_TAIL_SUFFIX);
}
}
report(name);
report("%s", name);
}
void bitfn(checkasm_check_loopfilter)(void) {