summaryrefslogtreecommitdiff
path: root/ot_mutex.c
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2024-04-13 16:52:46 +0200
committerDirk Engling <erdgeist@erdgeist.org>2024-04-13 16:52:46 +0200
commit3a2a711a29cf1bd1a9180214607a1959aa555841 (patch)
tree5620ad640d022ea1073bb8544fe84c4e6f3e28e7 /ot_mutex.c
parentbd4992435ca8343cca0b34af13cf6da331a357f8 (diff)
Fix type warnings in debug strings
Diffstat (limited to 'ot_mutex.c')
-rw-r--r--ot_mutex.c8
1 files changed, 4 insertions, 4 deletions
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) {
205 for (task = tasklist; task; task = task->next) 205 for (task = tasklist; task; task = task->next)
206 if (task->taskid == taskid) { 206 if (task->taskid == taskid) {
207 if( iovec ) { 207 if( iovec ) {
208fprintf(stderr, "mutex_workqueue_pushchunked pushing on taskid %d\n", taskid); 208fprintf(stderr, "mutex_workqueue_pushchunked pushing on taskid %lu\n", taskid);
209 if (!iovec_append(&task->iovec_entries, &task->iovec, iovec) ) 209 if (!iovec_append(&task->iovec_entries, &task->iovec, iovec) )
210 return -1; 210 return -1;
211 task->tasktype = TASK_DONE_PARTIAL; 211 task->tasktype = TASK_DONE_PARTIAL;
212 } else { 212 } else {
213fprintf(stderr, "mutex_workqueue_pushchunked finished taskid %d\n", taskid); 213fprintf(stderr, "mutex_workqueue_pushchunked finished taskid %lu\n", taskid);
214 task->tasktype = TASK_DONE; 214 task->tasktype = TASK_DONE;
215 } 215 }
216 break; 216 break;
@@ -221,7 +221,7 @@ fprintf(stderr, "mutex_workqueue_pushchunked finished taskid %d\n", taskid);
221 221
222 io_trywrite( g_self_pipe[1], &byte, 1 ); 222 io_trywrite( g_self_pipe[1], &byte, 1 );
223if(!task) 223if(!task)
224fprintf(stderr, "mutex_workqueue_pushchunked taskid %d not found\n", taskid); 224fprintf(stderr, "mutex_workqueue_pushchunked taskid %lu not found\n", taskid);
225 225
226 /* Indicate whether the worker has to throw away results */ 226 /* Indicate whether the worker has to throw away results */
227 return task ? 0 : -1; 227 return task ? 0 : -1;
@@ -240,7 +240,7 @@ int64 mutex_workqueue_popresult( int *iovec_entries, struct iovec ** iovec, int
240 for (task = &tasklist; *task; task = &((*task)->next)) 240 for (task = &tasklist; *task; task = &((*task)->next))
241 if (((*task)->tasktype & TASK_CLASS_MASK ) == TASK_DONE) { 241 if (((*task)->tasktype & TASK_CLASS_MASK ) == TASK_DONE) {
242 struct ot_task *ptask = *task; 242 struct ot_task *ptask = *task;
243fprintf(stderr, "Got task %d type %d with %d entries\n", (*task)->taskid, (*task)->tasktype, ptask->iovec_entries); 243fprintf(stderr, "Got task %lu type %d with %d entries\n", (*task)->taskid, (*task)->tasktype, ptask->iovec_entries);
244 *iovec_entries = ptask->iovec_entries; 244 *iovec_entries = ptask->iovec_entries;
245 *iovec = ptask->iovec; 245 *iovec = ptask->iovec;
246 sock = ptask->sock; 246 sock = ptask->sock;