mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-21 07:00:04 +01: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