From 7536af02cf218f8dcb1368bec6d86c65db95c9b4 Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Tue, 22 Dec 2015 13:49:30 -0800 Subject: Eliminate gpr_ int types - and insist on C99 variants instead --- src/core/iomgr/timer_heap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/iomgr/timer_heap.h') diff --git a/src/core/iomgr/timer_heap.h b/src/core/iomgr/timer_heap.h index cd5258f93e..2d220f1677 100644 --- a/src/core/iomgr/timer_heap.h +++ b/src/core/iomgr/timer_heap.h @@ -38,8 +38,8 @@ typedef struct { grpc_timer **timers; - gpr_uint32 timer_count; - gpr_uint32 timer_capacity; + uint32_t timer_count; + uint32_t timer_capacity; } grpc_timer_heap; /* return 1 if the new timer is the first timer in the heap */ -- cgit v1.2.3