libctf: ctf_next_t.ctn_size: make a size_t

Literally every single user would rather this is a size_t, rather
than an ssize_t.  Change it.
This commit is contained in:
Nick Alcock
2025-04-24 14:04:39 +01:00
parent 6a4a485c7b
commit 40aea6c596
2 changed files with 11 additions and 11 deletions

View File

@@ -542,7 +542,7 @@ struct ctf_next
{
void (*ctn_iter_fun) (void);
ctf_id_t ctn_type;
ssize_t ctn_size;
size_t ctn_size;
ssize_t ctn_increment;
const ctf_type_t *ctn_tp;
uint32_t ctn_n;