summaryrefslogtreecommitdiff
path: root/utests
diff options
context:
space:
mode:
Diffstat (limited to 'utests')
-rw-r--r--utests/load_program_from_spir.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utests/load_program_from_spir.cpp b/utests/load_program_from_spir.cpp
index f03e7c25..8ea1cd46 100644
--- a/utests/load_program_from_spir.cpp
+++ b/utests/load_program_from_spir.cpp
@@ -16,7 +16,7 @@ static void test_load_program_from_spir(void)
std::string extensionStr;
OCL_CALL (clGetPlatformInfo, platform, CL_PLATFORM_EXTENSIONS, 0, 0, &param_value_size);
std::vector<char> param_value(param_value_size);
- OCL_CALL (clGetDeviceInfo, device, CL_DEVICE_EXTENSIONS, param_value_size, param_value.empty() ? NULL : &param_value.front(), &param_value_size);
+ OCL_CALL (clGetPlatformInfo, platform, CL_PLATFORM_EXTENSIONS, param_value_size, param_value.empty() ? NULL : &param_value.front(), &param_value_size);
if (!param_value.empty())
extensionStr = std::string(&param_value.front(), param_value_size-1);