aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr/timer_heap.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-12-22 13:49:30 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-12-22 13:49:30 -0800
commit7536af02cf218f8dcb1368bec6d86c65db95c9b4 (patch)
treecd560e1321aed28504aca5358dabbf49692a0956 /src/core/iomgr/timer_heap.h
parent2d2963e5e919128929e8a62a17fbbc9f3fd684d9 (diff)
Eliminate gpr_ int types - and insist on C99 variants instead
Diffstat (limited to 'src/core/iomgr/timer_heap.h')
-rw-r--r--src/core/iomgr/timer_heap.h4
1 files changed, 2 insertions, 2 deletions
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 */