From e4eb716d2688f5c2d4615d79ad5f4f1eb50a9343 Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Fri, 3 Apr 2026 01:40:39 +0200 Subject: turn all int offsets into size_t --- ot_mutex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ot_mutex.h') diff --git a/ot_mutex.h b/ot_mutex.h index cdfabc9..ab1cf59 100644 --- a/ot_mutex.h +++ b/ot_mutex.h @@ -73,8 +73,8 @@ int mutex_workqueue_pushtask(int64 sock, ot_tasktype tasktype) void mutex_workqueue_canceltask(int64 sock); void mutex_workqueue_pushsuccess(ot_taskid taskid); ot_taskid mutex_workqueue_poptask(ot_tasktype *tasktype); -int mutex_workqueue_pushresult(ot_taskid taskid, int iovec_entries, struct iovec *iovector); +int mutex_workqueue_pushresult(ot_taskid taskid, size_t iovec_entries, struct iovec *iovector); int mutex_workqueue_pushchunked(ot_taskid taskid, struct iovec *iovec); -int64 mutex_workqueue_popresult(int *iovec_entries, struct iovec **iovector, int *is_partial); +int64 mutex_workqueue_popresult(size_t *iovec_entries, struct iovec **iovector, int *is_partial); #endif -- cgit v1.2.3