diff options
author | rbuj <[email protected]> | 2022-07-26 20:41:48 +0200 |
---|---|---|
committer | mouse <[email protected]> | 2022-08-15 13:07:57 +0800 |
commit | eba064d0db0cb3ea79d5f0a487ee5defcf514a8a (patch) | |
tree | e9b06895c588be971a51859548ae5c60b8a94650 /libmate-desktop | |
parent | 5f7905fadeabc81b74aa276e6924c9338e7a9839 (diff) | |
download | mate-desktop-eba064d0db0cb3ea79d5f0a487ee5defcf514a8a.tar.bz2 mate-desktop-eba064d0db0cb3ea79d5f0a487ee5defcf514a8a.tar.xz |
mate-rr-config: fix -Wsign-compare warning
Diffstat (limited to 'libmate-desktop')
-rw-r--r-- | libmate-desktop/mate-rr-config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmate-desktop/mate-rr-config.c b/libmate-desktop/mate-rr-config.c index 10601f0..0f11198 100644 --- a/libmate-desktop/mate-rr-config.c +++ b/libmate-desktop/mate-rr-config.c @@ -371,7 +371,7 @@ handle_text (GMarkupParseContext *context, static void parser_free (Parser *parser) { - int i; + guint i; GList *list; g_assert (parser != NULL); @@ -1448,7 +1448,7 @@ static gboolean can_clone (CrtcInfo *info, MateRROutput *output) { - int i; + guint i; for (i = 0; i < info->outputs->len; ++i) { |