summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-03-10 10:27:09 +0100
committerraveit65 <[email protected]>2021-03-29 07:53:58 +0200
commit02cf23f7ed09e8c204200152f9dda39970864d39 (patch)
tree776565589b3fa5e6b9995cb743b927525a1c8a6d
parentb1c408e7c97bb2dc64a3d83b2098dfca14ecb916 (diff)
downloadmate-desktop-02cf23f7ed09e8c204200152f9dda39970864d39.tar.bz2
mate-desktop-02cf23f7ed09e8c204200152f9dda39970864d39.tar.xz
Remove shadow warnings [-Wshadow]
-rw-r--r--libmate-desktop/mate-bg.c8
-rw-r--r--libmate-desktop/mate-rr-config.c2
-rw-r--r--libmate-desktop/mate-rr.c8
3 files changed, 7 insertions, 11 deletions
diff --git a/libmate-desktop/mate-bg.c b/libmate-desktop/mate-bg.c
index 64c8d6a..fd55e4a 100644
--- a/libmate-desktop/mate-bg.c
+++ b/libmate-desktop/mate-bg.c
@@ -3071,7 +3071,7 @@ read_slideshow_file (const char *filename,
g_markup_parse_context_free (context);
if (show) {
- int len;
+ guint num_items;
t = mktime (&show->start_tm);
@@ -3079,14 +3079,14 @@ read_slideshow_file (const char *filename,
dump_bg (show);
- len = g_queue_get_length (show->slides);
+ num_items = g_queue_get_length (show->slides);
/* no slides, that's not a slideshow */
- if (len == 0) {
+ if (num_items == 0) {
slideshow_unref (show);
show = NULL;
/* one slide, there's no transition */
- } else if (len == 1) {
+ } else if (num_items == 1) {
Slide *slide = show->slides->head->data;
slide->duration = show->total_duration = G_MAXUINT;
}
diff --git a/libmate-desktop/mate-rr-config.c b/libmate-desktop/mate-rr-config.c
index d281420..964846c 100644
--- a/libmate-desktop/mate-rr-config.c
+++ b/libmate-desktop/mate-rr-config.c
@@ -1546,7 +1546,7 @@ crtc_assignment_assign (CrtcAssignment *assign,
}
else
{
- CrtcInfo *info = g_new0 (CrtcInfo, 1);
+ info = g_new0 (CrtcInfo, 1);
info->mode = mode;
info->x = x;
diff --git a/libmate-desktop/mate-rr.c b/libmate-desktop/mate-rr.c
index 97859a1..19d25ca 100644
--- a/libmate-desktop/mate-rr.c
+++ b/libmate-desktop/mate-rr.c
@@ -376,9 +376,7 @@ fill_screen_info_from_resources (ScreenInfo *info,
a = g_ptr_array_new ();
for (i = 0; i < resources->ncrtc; ++i)
{
- MateRRCrtc *crtc = crtc_new (info, resources->crtcs[i]);
-
- g_ptr_array_add (a, crtc);
+ g_ptr_array_add (a, crtc_new (info, resources->crtcs[i]));
}
g_ptr_array_add (a, NULL);
info->crtcs = (MateRRCrtc **)g_ptr_array_free (a, FALSE);
@@ -386,9 +384,7 @@ fill_screen_info_from_resources (ScreenInfo *info,
a = g_ptr_array_new ();
for (i = 0; i < resources->noutput; ++i)
{
- MateRROutput *output = output_new (info, resources->outputs[i]);
-
- g_ptr_array_add (a, output);
+ g_ptr_array_add (a, output_new (info, resources->outputs[i]));
}
g_ptr_array_add (a, NULL);
info->outputs = (MateRROutput **)g_ptr_array_free (a, FALSE);