refactor: use {t} format specifiers

This commit is contained in:
CJ van den Berg 2025-12-04 14:30:30 +01:00
parent b698fffd25
commit 9d758d9823
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 6 additions and 8 deletions

View file

@ -428,7 +428,7 @@ const Mask = struct {
};
inline for (flags) |f| {
if (is(m, f)) {
std.debug.print("{s} ", .{@tagName(f)});
std.debug.print("{t} ", .{f});
}
}
}