Fix new lines in error logging (#2617)

This is a small patch to fix a new line when logging an error.
This commit is contained in:
Ole Strohm
2026-02-19 00:04:47 +00:00
committed by GitHub
parent ddc163a03a
commit 662e53b60d

View File

@@ -757,7 +757,7 @@ REGISTER_TEST(spirv_query_dependencies)
}
for (const auto& extension_dep : it->second.extensions)
{
log_error("Checked for SPIR-V extension %s.n",
log_error("Checked for SPIR-V extension %s.\n",
extension_dep.c_str());
}
return TEST_FAIL;