From 02cf23f7ed09e8c204200152f9dda39970864d39 Mon Sep 17 00:00:00 2001 From: rbuj Date: Wed, 10 Mar 2021 10:27:09 +0100 Subject: Remove shadow warnings [-Wshadow] --- libmate-desktop/mate-rr.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'libmate-desktop/mate-rr.c') 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); -- cgit v1.2.1