summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/gray_pixelfuncs.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/gray_pixelfuncs.c')
-rw-r--r--apps/plugins/lib/gray_pixelfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/gray_pixelfuncs.c b/apps/plugins/lib/gray_pixelfuncs.c
index cade096405..3cdcccd9a5 100644
--- a/apps/plugins/lib/gray_pixelfuncs.c
+++ b/apps/plugins/lib/gray_pixelfuncs.c
@@ -34,7 +34,7 @@ static void _writepixel(int x, int y, unsigned long pattern);
34static void _invertpixel(int x, int y, unsigned long pattern); 34static void _invertpixel(int x, int y, unsigned long pattern);
35 35
36/* function pointer array */ 36/* function pointer array */
37void (*_gray_pixelfuncs[4])(int x, int y, unsigned long pattern) = { 37void (* const _gray_pixelfuncs[4])(int x, int y, unsigned long pattern) = {
38 _invertpixel, _writepixel, _writepixel, _writepixel 38 _invertpixel, _writepixel, _writepixel, _writepixel
39}; 39};
40 40