From fe20fac902b2bc1d0e529b386f9031fb8c305208 Mon Sep 17 00:00:00 2001 From: "Ahmed, Daiyaan" Date: Mon, 8 Jul 2024 13:49:55 +0800 Subject: [PATCH] [SYCLomatic] Fix format specificier fail issue for devicemgr test Signed-off-by: Ahmed, Daiyaan --- help_function/src/devicemgr_multi_thread_aware.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help_function/src/devicemgr_multi_thread_aware.cpp b/help_function/src/devicemgr_multi_thread_aware.cpp index e846d5a8e..7dec18b9e 100644 --- a/help_function/src/devicemgr_multi_thread_aware.cpp +++ b/help_function/src/devicemgr_multi_thread_aware.cpp @@ -68,7 +68,7 @@ int main(int argc, char *argv[]) { unsigned long long queue_ptr[NUM_THREADS]; for (t = 0; t < NUM_THREADS; t++) { - printf("In main: creating thread %ld\n", t); + printf("In main: creating thread %d\n", t); queue_ptr[t] = t; threads[t] = std::thread(thread_using_device, std::ref(queue_ptr[t])); }