Skip to content
Snippets Groups Projects
Commit 305dcf3d authored by Craig Tiller's avatar Craig Tiller Committed by GitHub
Browse files

Merge pull request #10924 from ctiller/not-ld

Fix printf format
parents 9162f751 570fad82
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ void ThreadManagerTest::PerformTest() {
// The number of times DoWork() was called is equal to the number of times
// WORK_FOUND was returned
gpr_log(GPR_DEBUG, "DoWork() called %ld times",
gpr_log(GPR_DEBUG, "DoWork() called %" PRIdPTR " times",
gpr_atm_no_barrier_load(&num_do_work_));
GPR_ASSERT(gpr_atm_no_barrier_load(&num_do_work_) ==
gpr_atm_no_barrier_load(&num_work_found_));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment