fp-print: Fix sign-compare warnings
libfprint/fp-print.c: In function ‘fp_print_equal’: libfprint/fp-print.c:596:21: warning: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘guint’ {aka ‘unsigned int’} [-Wsign-compare] 596 | for (i = 0; i < self->prints->len; i++) | ^ libfprint/fp-print.c: In function ‘fp_print_serialize’: libfprint/fp-print.c:667:21: warning: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘guint’ {aka ‘unsigned int’} [-Wsign-compare] 667 | for (i = 0; i < print->prints->len; i++) | ^ libfprint/fp-print.c: In function ‘fp_print_deserialize’: libfprint/fp-print.c:823:21: warning: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’} [-Wsign-compare] 823 | for (i = 0; i < g_variant_n_children (prints); i++) | ^
This commit is contained in:
parent
cc887c1a37
commit
579e01359b
1 changed files with 3 additions and 3 deletions
|
@ -588,7 +588,7 @@ fp_print_equal (FpPrint *self, FpPrint *other)
|
||||||
}
|
}
|
||||||
else if (self->type == FPI_PRINT_NBIS)
|
else if (self->type == FPI_PRINT_NBIS)
|
||||||
{
|
{
|
||||||
gint i;
|
guint i;
|
||||||
|
|
||||||
if (self->prints->len != other->prints->len)
|
if (self->prints->len != other->prints->len)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
@ -661,7 +661,7 @@ fp_print_serialize (FpPrint *print,
|
||||||
if (print->type == FPI_PRINT_NBIS)
|
if (print->type == FPI_PRINT_NBIS)
|
||||||
{
|
{
|
||||||
GVariantBuilder nested = G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE ("(a(aiaiai))"));
|
GVariantBuilder nested = G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE ("(a(aiaiai))"));
|
||||||
gint i;
|
guint i;
|
||||||
|
|
||||||
g_variant_builder_open (&nested, G_VARIANT_TYPE ("a(aiaiai)"));
|
g_variant_builder_open (&nested, G_VARIANT_TYPE ("a(aiaiai)"));
|
||||||
for (i = 0; i < print->prints->len; i++)
|
for (i = 0; i < print->prints->len; i++)
|
||||||
|
@ -812,7 +812,7 @@ fp_print_deserialize (const guchar *data,
|
||||||
if (type == FPI_PRINT_NBIS)
|
if (type == FPI_PRINT_NBIS)
|
||||||
{
|
{
|
||||||
g_autoptr(GVariant) prints = g_variant_get_child_value (print_data, 0);
|
g_autoptr(GVariant) prints = g_variant_get_child_value (print_data, 0);
|
||||||
gint i;
|
guint i;
|
||||||
|
|
||||||
result = g_object_new (FP_TYPE_PRINT,
|
result = g_object_new (FP_TYPE_PRINT,
|
||||||
"driver", driver,
|
"driver", driver,
|
||||||
|
|
Loading…
Reference in a new issue