diff options
author | Alexander Smirnov <alex@ydb.tech> | 2025-03-12 07:09:44 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2025-03-12 07:09:44 +0000 |
commit | f31f6ec483fc78a200aef65cf08ee98e8a6a7cea (patch) | |
tree | 7428e41dea304eeda9d97ded266d42995478a0b4 /contrib/libs/ngtcp2/lib/ngtcp2_range.c | |
parent | 9059c4534bd1b0fb20ba2426eb59640415e24113 (diff) | |
parent | 7ae87080b7fdfadae6ebb86360ba3eb4c6325e2d (diff) | |
download | ydb-f31f6ec483fc78a200aef65cf08ee98e8a6a7cea.tar.gz |
Merge branch 'rightlib' into merge-libs-250312-0708
Diffstat (limited to 'contrib/libs/ngtcp2/lib/ngtcp2_range.c')
-rw-r--r-- | contrib/libs/ngtcp2/lib/ngtcp2_range.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/ngtcp2/lib/ngtcp2_range.c b/contrib/libs/ngtcp2/lib/ngtcp2_range.c index 7bbefc0175..e898915329 100644 --- a/contrib/libs/ngtcp2/lib/ngtcp2_range.c +++ b/contrib/libs/ngtcp2/lib/ngtcp2_range.c @@ -32,7 +32,7 @@ void ngtcp2_range_init(ngtcp2_range *r, uint64_t begin, uint64_t end) { ngtcp2_range ngtcp2_range_intersect(const ngtcp2_range *a, const ngtcp2_range *b) { - ngtcp2_range r = {0, 0}; + ngtcp2_range r = {0}; uint64_t begin = ngtcp2_max_uint64(a->begin, b->begin); uint64_t end = ngtcp2_min_uint64(a->end, b->end); |