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 --- opentracker.c | 2 +- ot_http.c | 2 +- ot_mutex.c | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/opentracker.c b/opentracker.c index 596c2a7..b1fa87a 100644 --- a/opentracker.c +++ b/opentracker.c @@ -217,7 +217,7 @@ static void handle_write( const int64 sock ) { chunked = 1; for( i = 0; i < cookie->batches; ++i ) { - fprintf(stderr, "handle_write inspects batch %d of %d (bytes left: %d)\n", i, cookie->batches, cookie->batch[i].bytesleft); + fprintf(stderr, "handle_write inspects batch %zu of %zu (bytes left: %llu)\n", i, cookie->batches, cookie->batch[i].bytesleft); if( cookie->batch[i].bytesleft ) { int64 res = iob_send( sock, cookie->batch + i ); 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; diff --git a/ot_mutex.c b/ot_mutex.c index b61b915..15f3da5 100644 --- a/ot_mutex.c +++ b/ot_mutex.c @@ -205,12 +205,12 @@ int mutex_workqueue_pushchunked(ot_taskid taskid, struct iovec *iovec) { for (task = tasklist; task; task = task->next) if (task->taskid == taskid) { if( iovec ) { -fprintf(stderr, "mutex_workqueue_pushchunked pushing on taskid %d\n", taskid); +fprintf(stderr, "mutex_workqueue_pushchunked pushing on taskid %lu\n", taskid); if (!iovec_append(&task->iovec_entries, &task->iovec, iovec) ) return -1; task->tasktype = TASK_DONE_PARTIAL; } else { -fprintf(stderr, "mutex_workqueue_pushchunked finished taskid %d\n", taskid); +fprintf(stderr, "mutex_workqueue_pushchunked finished taskid %lu\n", taskid); task->tasktype = TASK_DONE; } break; @@ -221,7 +221,7 @@ fprintf(stderr, "mutex_workqueue_pushchunked finished taskid %d\n", taskid); io_trywrite( g_self_pipe[1], &byte, 1 ); if(!task) -fprintf(stderr, "mutex_workqueue_pushchunked taskid %d not found\n", taskid); +fprintf(stderr, "mutex_workqueue_pushchunked taskid %lu not found\n", taskid); /* Indicate whether the worker has to throw away results */ return task ? 0 : -1; @@ -240,7 +240,7 @@ int64 mutex_workqueue_popresult( int *iovec_entries, struct iovec ** iovec, int for (task = &tasklist; *task; task = &((*task)->next)) if (((*task)->tasktype & TASK_CLASS_MASK ) == TASK_DONE) { struct ot_task *ptask = *task; -fprintf(stderr, "Got task %d type %d with %d entries\n", (*task)->taskid, (*task)->tasktype, ptask->iovec_entries); +fprintf(stderr, "Got task %lu type %d with %d entries\n", (*task)->taskid, (*task)->tasktype, ptask->iovec_entries); *iovec_entries = ptask->iovec_entries; *iovec = ptask->iovec; sock = ptask->sock; -- cgit v1.2.3