From be1c0f26fc9d0eee7eff330acc4738224253cc3e Mon Sep 17 00:00:00 2001 From: rbuj Date: Sun, 25 Aug 2019 15:22:37 +0200 Subject: comparison of integers of different signs: 'int' and 'guint' Fix compiler warning: comparison of integers of different signs: 'int' and 'guint' (aka 'unsigned int') [-Wsign-compare] --- src/dlg-prop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dlg-prop.c') diff --git a/src/dlg-prop.c b/src/dlg-prop.c index 3db1395..5230647 100644 --- a/src/dlg-prop.c +++ b/src/dlg-prop.c @@ -157,7 +157,7 @@ dlg_prop (FrWindow *window) uncompressed_size = 0; if (fr_window_archive_is_present (window)) { - int i; + guint i; for (i = 0; i < window->archive->command->files->len; i++) { FileData *fd = g_ptr_array_index (window->archive->command->files, i); -- cgit v1.2.1