From ff7d2bdee1e25148bc9775f9b804424c8e1a37b9 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Wed, 25 Jul 2018 20:53:17 +0200 Subject: Fix lcd-scroll.c truncation warnings Change-Id: I312ec7ad06fde5b2f9747661cd2d4ffcb4cbf755 --- firmware/export/scroll_engine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/export/scroll_engine.h b/firmware/export/scroll_engine.h index ce230a2..ee2dfb6 100644 --- a/firmware/export/scroll_engine.h +++ b/firmware/export/scroll_engine.h @@ -67,7 +67,7 @@ extern bool lcd_remote_scroll_now(struct scrollinfo *scroll); struct scrollinfo { struct viewport* vp; - char linebuffer[9*MAX_PATH/10]; + char linebuffer[(SCROLL_LINE_SIZE / 2) - 1]; const char *line; /* rectangle for the line */ int x, y; /* relative to the viewort */ -- cgit v1.1