diff options
author | rbuj <[email protected]> | 2019-03-12 09:15:20 +0100 |
---|---|---|
committer | rbuj <[email protected]> | 2019-04-12 10:46:34 +0200 |
commit | 558dd907df6d1c6d72a4fa4ac56c5ecf194a6efe (patch) | |
tree | 458640ca4a26345c6997807639e97fe0cf8c97c8 /libwindow-settings | |
parent | 11f634c0aff8ff9214f832514ff33aab317e7402 (diff) | |
download | mate-control-center-558dd907df6d1c6d72a4fa4ac56c5ecf194a6efe.tar.bz2 mate-control-center-558dd907df6d1c6d72a4fa4ac56c5ecf194a6efe.tar.xz |
Remove dead store detected by clang
marco-window-manager.c:408:17: warning: Value stored to 'i' is never read
i = 0;
^ ~
theme-installer.c:813:3: warning: Value stored to 'filename' is never read
filename = old_folder;
^ ~~~~~~~~~~
Diffstat (limited to 'libwindow-settings')
-rw-r--r-- | libwindow-settings/marco-window-manager.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libwindow-settings/marco-window-manager.c b/libwindow-settings/marco-window-manager.c index 5ce68dfb..489d210d 100644 --- a/libwindow-settings/marco-window-manager.c +++ b/libwindow-settings/marco-window-manager.c @@ -405,7 +405,6 @@ marco_get_double_click_actions (MateWindowManager *wm, int i; initialized = TRUE; - i = 0; for (i = 0; i < G_N_ELEMENTS (actions); i++) { actions[i].human_readable_name = _(actions[i].human_readable_name); } |