[glib: 4/9] Fix multiple signedness warnings in gio/tests/gdbus-testserver.c




commit 5133acdaff46c59dff59823bae9e132feb673b69
Author: Emmanuel Fleury <emmanuel fleury gmail com>
Date:   Thu Nov 19 20:50:44 2020 +0100

    Fix multiple signedness warnings in gio/tests/gdbus-testserver.c
    
    gio/tests/gdbus-testserver.c: In function ‘handle_method_call’:
    gio/tests/gdbus-testserver.c:334:23: error: comparison of integer expressions of different signedness: 
‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’}
      334 |         for (i = 0; i < n_elts; i++)
          |                       ^
    gio/tests/gdbus-testserver.c:343:23: error: comparison of integer expressions of different signedness: 
‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’}
      343 |         for (i = 0; i < n_elts; i++)
          |                       ^
    gio/tests/gdbus-testserver.c:352:23: error: comparison of integer expressions of different signedness: 
‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’}
      352 |         for (i = 0; i < n_elts; i++)
          |                       ^
    gio/tests/gdbus-testserver.c:361:23: error: comparison of integer expressions of different signedness: 
‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’}
      361 |         for (i = 0; i < n_elts; i++)
          |                       ^
    gio/tests/gdbus-testserver.c:370:23: error: comparison of integer expressions of different signedness: 
‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’}
      370 |         for (i = 0; i < n_elts; i++)
          |                       ^
    gio/tests/gdbus-testserver.c:379:23: error: comparison of integer expressions of different signedness: 
‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’}
      379 |         for (i = 0; i < n_elts; i++)
          |                       ^
    gio/tests/gdbus-testserver.c:388:23: error: comparison of integer expressions of different signedness: 
‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’}
      388 |         for (i = 0; i < n_elts; i++)
          |                       ^
    gio/tests/gdbus-testserver.c:397:23: error: comparison of integer expressions of different signedness: 
‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’}
      397 |         for (i = 0; i < n_elts; i++)
          |                       ^
    gio/tests/gdbus-testserver.c:406:23: error: comparison of integer expressions of different signedness: 
‘gint’ {aka ‘int’} and ‘gsize’ {aka ‘long unsigned int’}
      406 |         for (i = 0; i < n_elts; i++)
          |                       ^

 gio/tests/gdbus-testserver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gio/tests/gdbus-testserver.c b/gio/tests/gdbus-testserver.c
index dd0d5ba5a..a0efccdc5 100644
--- a/gio/tests/gdbus-testserver.c
+++ b/gio/tests/gdbus-testserver.c
@@ -322,7 +322,7 @@ handle_method_call (GDBusConnection       *connection,
       const guint64 *uint64s;
       const gdouble *doubles;
       gsize n_elts;
-      gint i, j;
+      gsize i, j;
       GVariantBuilder ret;
 
       g_variant_builder_init (&ret, G_VARIANT_TYPE ("(ayabanaqaiauaxatad)"));


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]