From: Volker Lendecke Date: Mon, 4 Aug 2025 11:43:31 +0000 (+0200) Subject: tls: Fix a printf sign mismatch X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f1f0c7090fc20dfe06802f190ca10928b3dd79b2;p=thirdparty%2Fsamba.git tls: Fix a printf sign mismatch Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- diff --git a/source4/lib/tls/tls_tstream.c b/source4/lib/tls/tls_tstream.c index f91388947c2..09f66a03444 100644 --- a/source4/lib/tls/tls_tstream.c +++ b/source4/lib/tls/tls_tstream.c @@ -2607,7 +2607,7 @@ static int tstream_ngtcp2_acked_stream_data_offset_cb(ngtcp2_conn *conn, "offset[%"PRIu64"] pushed[%"PRIu64"][%zd]\n", si->stream_id, si->writev.pushed_offset, si->writev.pushed ? si->writev.pushed->offset : 0, - si->writev.pushed ? si->writev.pushed->length : -1); + si->writev.pushed ? (ssize_t)si->writev.pushed->length : -1); return 0; }