summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/lib/gray_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/gray_draw.c b/apps/plugins/lib/gray_draw.c
index c9f9d5d..802d8d2 100644
--- a/apps/plugins/lib/gray_draw.c
+++ b/apps/plugins/lib/gray_draw.c
@@ -433,7 +433,7 @@ void gray_mono_bitmap_part(const unsigned char *src, int src_x, int src_y,
{
const unsigned char *src_col = src++;
unsigned char *dst_col = dst;
- unsigned char data = *src_col >> src_y;
+ unsigned data = *src_col >> src_y;
int numbits = 8 - src_y;
dst_end = dst_col + height;