diff options
author | David Crosby <dave@dafyddcrosby.com> | 2015-07-15 14:55:08 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2015-08-11 12:59:27 +0000 |
commit | 7e5b33c30ece6f265593cc442ff5a8579faef8ad (patch) | |
tree | 4389d759cd838f9b71528b9848510831774e7674 /menu.c | |
parent | Move fclose to fix dereference after null check (Coverity) (diff) | |
download | w3m-7e5b33c30ece6f265593cc442ff5a8579faef8ad.tar.gz w3m-7e5b33c30ece6f265593cc442ff5a8579faef8ad.zip |
Remove dead assignments flagged by Clang static analysis
Diffstat (limited to '')
-rw-r--r-- | menu.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -361,7 +361,6 @@ geom_menu(Menu *menu, int x, int y, int mselect) if (win_w > COLS) { menu->width = COLS - 2 * FRAME_WIDTH; menu->width -= menu->width % FRAME_WIDTH; - win_w = menu->width + 2 * FRAME_WIDTH; } } menu->x = win_x + FRAME_WIDTH; |