Skip to content

Commit

Permalink
[SYCLomatic] Fix format specificier fail issue for devicemgr test
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmed, Daiyaan <[email protected]>
  • Loading branch information
daiyaan-ahmed6 committed Jul 8, 2024
1 parent 648a17b commit fe20fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion help_function/src/devicemgr_multi_thread_aware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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]));
}
Expand Down

0 comments on commit fe20fac

Please sign in to comment.