File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
stdlib/public/Concurrency Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -549,15 +549,15 @@ SWIFT_CC(swift)
549549JobPriority
550550static swift_task_escalateImpl(AsyncTask *task, JobPriority newPriority) {
551551
552- SWIFT_TASK_DEBUG_LOG (" Escalating %p to %#x priority" , task, newPriority);
552+ SWIFT_TASK_DEBUG_LOG (" Escalating %p to %#zx priority" , task, newPriority);
553553 auto oldStatus = task->_private ()._status ().load (std::memory_order_relaxed);
554554 auto newStatus = oldStatus;
555555
556556 while (true ) {
557557 // Fast path: check that the stored priority is already at least
558558 // as high as the desired priority.
559559 if (oldStatus.getStoredPriority () >= newPriority) {
560- SWIFT_TASK_DEBUG_LOG (" Task is already at %x priority" , oldStatus.getStoredPriority ());
560+ SWIFT_TASK_DEBUG_LOG (" Task is already at %#zx priority" , oldStatus.getStoredPriority ());
561561 return oldStatus.getStoredPriority ();
562562 }
563563
You can’t perform that action at this time.
0 commit comments