From 688ec2f47167fcca1c3e14854b69640479422794 Mon Sep 17 00:00:00 2001 From: zhuyaliang <15132211195@163.com> Date: Tue, 24 Oct 2023 19:56:51 +0800 Subject: Remove compilation warning fix data type format error --- src/egg-array-float.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/egg-array-float.c') diff --git a/src/egg-array-float.c b/src/egg-array-float.c index 0c4d15c..e4c2a34 100644 --- a/src/egg-array-float.c +++ b/src/egg-array-float.c @@ -76,7 +76,7 @@ gfloat egg_array_float_get (EggArrayFloat *array, guint i) { if (i >= array->len) - g_error ("above index! (%i)", i); + g_error ("above index! (%u)", i); return g_array_index (array, gfloat, i); } @@ -150,7 +150,7 @@ egg_array_float_compute_gaussian (guint length, gfloat sigma) half_length = (length / 2) + 1; for (i=0; ilen; /* debug out */ for (i=0; i