Skip to content

Commit 02bb839

Browse files
ctillerpaulosjca
authored andcommitted
[sanity] Fix (grpc#40075)
Closes grpc#40075 COPYBARA_INTEGRATE_REVIEW=grpc#40075 from ctiller:S4 cf964bf PiperOrigin-RevId: 777699355
1 parent 37eece9 commit 02bb839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/lib/promise/race.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class Race<Promise, Promises...> {
6969
grpc_channelz_v2_Promise_mutable_race_promise(promise_proto, arena);
7070
auto** children = grpc_channelz_v2_Promise_Race_resize_children(
7171
race_promise, 1 + sizeof...(Promises), arena);
72-
for (int i = 0; i < 1 + sizeof...(Promises); ++i) {
72+
for (size_t i = 0; i < 1 + sizeof...(Promises); ++i) {
7373
children[i] = grpc_channelz_v2_Promise_new(arena);
7474
}
7575
SetChildrenProto(children, 0, arena);

0 commit comments

Comments
 (0)