Skip to content
Snippets Groups Projects
Commit 570fad82 authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix printf format

parent 365c52b4
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ void ThreadManagerTest::PerformTest() { ...@@ -118,7 +118,7 @@ void ThreadManagerTest::PerformTest() {
// The number of times DoWork() was called is equal to the number of times // The number of times DoWork() was called is equal to the number of times
// WORK_FOUND was returned // 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_atm_no_barrier_load(&num_do_work_));
GPR_ASSERT(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_)); 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