Skip to content

Commit 662e53b

Browse files
Fix new lines in error logging (#2617)
This is a small patch to fix a new line when logging an error.
1 parent ddc163a commit 662e53b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test_conformance/api/test_spirv_queries.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ REGISTER_TEST(spirv_query_dependencies)
757757
}
758758
for (const auto& extension_dep : it->second.extensions)
759759
{
760-
log_error("Checked for SPIR-V extension %s.n",
760+
log_error("Checked for SPIR-V extension %s.\n",
761761
extension_dep.c_str());
762762
}
763763
return TEST_FAIL;

0 commit comments

Comments
 (0)