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)
549
549
JobPriority
550
550
static swift_task_escalateImpl(AsyncTask *task, JobPriority newPriority) {
551
551
552
- SWIFT_TASK_DEBUG_LOG (" Escalating %p to %#x priority" , task, newPriority);
552
+ SWIFT_TASK_DEBUG_LOG (" Escalating %p to %#zx priority" , task, newPriority);
553
553
auto oldStatus = task->_private ()._status ().load (std::memory_order_relaxed);
554
554
auto newStatus = oldStatus;
555
555
556
556
while (true ) {
557
557
// Fast path: check that the stored priority is already at least
558
558
// as high as the desired priority.
559
559
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 ());
561
561
return oldStatus.getStoredPriority ();
562
562
}
563
563
You can’t perform that action at this time.
0 commit comments