From 0bdd0fd2fa1de0b71742806015a0d5ecc29068c3 Mon Sep 17 00:00:00 2001 From: Sven van Haastregt Date: Wed, 17 Jan 2024 17:05:10 +0100 Subject: [PATCH] compiler: fix grammar in error message (#1877) Signed-off-by: Sven van Haastregt --- test_conformance/compiler/test_feature_macro.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_conformance/compiler/test_feature_macro.cpp b/test_conformance/compiler/test_feature_macro.cpp index ef3c0028..7858c3c2 100644 --- a/test_conformance/compiler/test_feature_macro.cpp +++ b/test_conformance/compiler/test_feature_macro.cpp @@ -171,8 +171,8 @@ cl_int check_compiler_feature_info(cl_device_id deviceID, cl_context context, } else { - log_error("Error: The macro feature is defined and undefined " - "in the same time\n"); + log_error("Error: The feature macro is defined and undefined " + "at the same time\n"); error = OutputBuildLogs(program_supported, 1, &deviceID); test_error(error, "OutputBuildLogs failed.\n"); error = OutputBuildLogs(program_not_supported, 1, &deviceID);