Skip to content

Commit

Permalink
Merge pull request #5632 from hiroyuki-sato/topic/ucp-portable-printf
Browse files Browse the repository at this point in the history
UCP/CORE: Use portable format string like PRIx64.
  • Loading branch information
yosefe authored Aug 30, 2020
2 parents 55e3306 + 7a11954 commit bd4374a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ucp/core/ucp_worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ static ucs_status_t ucp_worker_add_resource_ifaces(ucp_worker_h worker)
/* Cache tl_bitmap on the context, so the next workers would not need
* to select best ifaces. */
context->tl_bitmap = tl_bitmap;
ucs_debug("selected tl bitmap: 0x%lx (%d tls)",
ucs_debug("selected tl bitmap: 0x%"PRIx64" (%d tls)",
tl_bitmap, ucs_popcount(tl_bitmap));
}

Expand All @@ -1101,7 +1101,7 @@ static ucs_status_t ucp_worker_add_resource_ifaces(ucp_worker_h worker)
}
}

ucs_debug("selected scalable tl bitmap: 0x%lx (%d tls)",
ucs_debug("selected scalable tl bitmap: 0x%"PRIx64" (%d tls)",
worker->scalable_tl_bitmap,
ucs_popcount(worker->scalable_tl_bitmap));

Expand Down

0 comments on commit bd4374a

Please sign in to comment.