From ad6e02bf2d10e04b9c25b1fa048422eca1b0c8c8 Mon Sep 17 00:00:00 2001 From: Kamil Kopryk Date: Tue, 16 Jan 2024 01:55:31 +0000 Subject: [PATCH] refactor: correct spelling Signed-off-by: Kamil Kopryk --- opencl/test/black_box_test/hello_world_opencl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opencl/test/black_box_test/hello_world_opencl.cpp b/opencl/test/black_box_test/hello_world_opencl.cpp index c1f77db04c..53e814fd61 100644 --- a/opencl/test/black_box_test/hello_world_opencl.cpp +++ b/opencl/test/black_box_test/hello_world_opencl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020-2023 Intel Corporation + * Copyright (C) 2020-2024 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -53,7 +53,7 @@ int main(int argc, char **argv) { cl_device_type deviceType = CL_DEVICE_TYPE_GPU; err = clGetDeviceIDs(platforms.get()[0], deviceType, 1, &device_id, NULL); if (err != CL_SUCCESS) { - cout << "Error gettting device_id" << endl; + cout << "Error getting device_id" << endl; abort(); }