grand: Fix -Wsign-compare warning

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2018-07-10 14:16:41 +02:00
parent e40e77f9be
commit 91c0c6f95b

View File

@ -388,7 +388,7 @@ g_rand_set_seed_array (GRand *rand,
const guint32 *seed,
guint seed_length)
{
int i, j, k;
guint i, j, k;
g_return_if_fail (rand != NULL);
g_return_if_fail (seed_length >= 1);