From 3a2a711a29cf1bd1a9180214607a1959aa555841 Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Sat, 13 Apr 2024 16:52:46 +0200 Subject: Fix type warnings in debug strings --- ot_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ot_http.c') diff --git a/ot_http.c b/ot_http.c index 66899b1..5b96e6f 100644 --- a/ot_http.c +++ b/ot_http.c @@ -185,7 +185,7 @@ fprintf(stderr, "http_sendiovecdata sending %d iovec entries found cookie->batch for( i=0; ibytesleft > OT_BATCH_LIMIT ) { -fprintf(stderr, "http_sendiovecdata found batch above limit: %zd\n", current->bytesleft); +fprintf(stderr, "http_sendiovecdata found batch above limit: %llu\n", current->bytesleft); io_batch * new_batch = realloc( cookie->batch, (cookie->batches + 1) * sizeof(io_batch) ); if( new_batch ) { cookie->batch = new_batch; -- cgit v1.2.3