diff options
author | rbuj <[email protected]> | 2019-08-25 15:22:37 +0200 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2019-08-28 10:56:50 +0200 |
commit | be1c0f26fc9d0eee7eff330acc4738224253cc3e (patch) | |
tree | 896295766514978db98a40b86adb87f8590387ef /src/dlg-prop.c | |
parent | 66076cf781963cd1b781ba8e42d32efcf8fa9180 (diff) | |
download | engrampa-be1c0f26fc9d0eee7eff330acc4738224253cc3e.tar.bz2 engrampa-be1c0f26fc9d0eee7eff330acc4738224253cc3e.tar.xz |
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]
Diffstat (limited to 'src/dlg-prop.c')
-rw-r--r-- | src/dlg-prop.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |