diff options
author | rbuj <[email protected]> | 2021-03-10 10:27:09 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-03-29 07:53:58 +0200 |
commit | 02cf23f7ed09e8c204200152f9dda39970864d39 (patch) | |
tree | 776565589b3fa5e6b9995cb743b927525a1c8a6d /libmate-desktop/mate-rr-config.c | |
parent | b1c408e7c97bb2dc64a3d83b2098dfca14ecb916 (diff) | |
download | mate-desktop-02cf23f7ed09e8c204200152f9dda39970864d39.tar.bz2 mate-desktop-02cf23f7ed09e8c204200152f9dda39970864d39.tar.xz |
Remove shadow warnings [-Wshadow]
Diffstat (limited to 'libmate-desktop/mate-rr-config.c')
-rw-r--r-- | libmate-desktop/mate-rr-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |