diff options
author | rbuj <[email protected]> | 2019-08-27 13:14:49 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-09-05 01:54:52 +0200 |
commit | e74151786c1ec24929560438590597b493f212e1 (patch) | |
tree | edb0e1eed3eacdf82501b541e56ce1496bd88b8b /src/fr-window.c | |
parent | 3022fd87f4360dcd8458be65e468e065cbc1e8a5 (diff) | |
download | engrampa-e74151786c1ec24929560438590597b493f212e1.tar.bz2 engrampa-e74151786c1ec24929560438590597b493f212e1.tar.xz |
comparison of integer expressions of different signedness: ‘size_t’
Diffstat (limited to 'src/fr-window.c')
-rw-r--r-- | src/fr-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fr-window.c b/src/fr-window.c index e007ace..db9d7af 100644 --- a/src/fr-window.c +++ b/src/fr-window.c @@ -1123,7 +1123,7 @@ static gboolean compute_file_list_name (FrWindow *window, FileData *fdata, const char *current_dir, - int current_dir_len, + size_t current_dir_len, GHashTable *names_hash, gboolean *different_name) { @@ -1183,7 +1183,7 @@ fr_window_compute_list_names (FrWindow *window, GPtrArray *files) { const char *current_dir; - int current_dir_len; + size_t current_dir_len; GHashTable *names_hash; guint i; gboolean visible_list_started = FALSE; |