grel: Fix the internal type of GRealTuples.len to match the public API

`GTuples.len` is a `guint`.

This doesn’t seem to have caused any problems or warnings, but let’s get
it correct.

Signed-off-by: Philip Withnall <pwithnall@gnome.org>
This commit is contained in:
Philip Withnall 2025-04-10 18:58:48 +01:00
parent c5afe67022
commit ea06530b6e
No known key found for this signature in database
GPG Key ID: C5C42CFB268637CA

View File

@ -123,7 +123,7 @@ static size_t relation_count_internal (GRelation *relation,
**/
struct _GRealTuples
{
gint len;
guint len;
gint width;
gpointer *data;
};