mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-21 22:01:31 +02:00
BUG/MINOR: ring: b_peek_varint() returns a uint64_t, not a size_t
The difference matters when building on 32-bit architectures and a warning was rightfully emitted. No backport is needed.
This commit is contained in:
parent
e7bbbca781
commit
30362908d8
@ -117,7 +117,7 @@ ssize_t ring_write(struct ring *ring, size_t maxlen, const struct ist pfx[], siz
|
|||||||
struct appctx *appctx;
|
struct appctx *appctx;
|
||||||
size_t totlen = 0;
|
size_t totlen = 0;
|
||||||
size_t lenlen;
|
size_t lenlen;
|
||||||
size_t dellen;
|
uint64_t dellen;
|
||||||
int dellenlen;
|
int dellenlen;
|
||||||
ssize_t sent = 0;
|
ssize_t sent = 0;
|
||||||
int i;
|
int i;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user