diff options
author | rbuj <[email protected]> | 2021-12-19 23:34:14 +0100 |
---|---|---|
committer | Luke from DC <[email protected]> | 2022-02-09 04:03:59 +0000 |
commit | b6d46039be75bd2b868ee6c32b091a1e37720a20 (patch) | |
tree | fe11a75d22da7ca239204f000c33b2338cc07419 /libcaja-private/caja-debug-log.c | |
parent | 97b61e663e47e6bd6ee6ff460895a7370b3c6159 (diff) | |
download | caja-b6d46039be75bd2b868ee6c32b091a1e37720a20.tar.bz2 caja-b6d46039be75bd2b868ee6c32b091a1e37720a20.tar.xz |
Fix some -Wsign-compare warnings
Diffstat (limited to 'libcaja-private/caja-debug-log.c')
-rw-r--r-- | libcaja-private/caja-debug-log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcaja-private/caja-debug-log.c b/libcaja-private/caja-debug-log.c index d872f91d..a7594757 100644 --- a/libcaja-private/caja-debug-log.c +++ b/libcaja-private/caja-debug-log.c @@ -358,7 +358,7 @@ caja_debug_log_load_configuration (const char *filename, GError **error) g_error_free (my_error); else { - int i; + gsize i; for (i = 0; i < num_strings; i++) strings[i] = g_strstrip (strings[i]); |