mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-25 02:18:55 +02:00
The tests were using a lot of signed `int`s when actually the values being handled were always non-negative. Use `unsigned int` consistently throughout. Take the opportunity to move declarations of loop iterator variables into the loops. This introduces no functional changes. Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3405