summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/scrollbar.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/gui/scrollbar.c b/apps/gui/scrollbar.c
index 6f7928f49b..b9038d902b 100644
--- a/apps/gui/scrollbar.c
+++ b/apps/gui/scrollbar.c
@@ -71,8 +71,7 @@ void gui_scrollbar_draw(struct screen * screen, int x, int y,
71 /* avoid overflows */ 71 /* avoid overflows */
72 while (items > (INT_MAX / inner_len)) { 72 while (items > (INT_MAX / inner_len)) {
73 items >>= 1; 73 items >>= 1;
74 min >>= 1; 74 range >>= 1;
75 max >>= 1;
76 } 75 }
77 76
78 /* calc start and end of the knob */ 77 /* calc start and end of the knob */