diff options
Diffstat (limited to 'apps/misc.c')
-rw-r--r-- | apps/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/misc.c b/apps/misc.c index 2ee6627f03..582901f2ef 100644 --- a/apps/misc.c +++ b/apps/misc.c | |||
@@ -114,7 +114,7 @@ int main(int argc, char **argv) | |||
114 | 114 | ||
115 | #ifdef HAVE_LCD_BITMAP | 115 | #ifdef HAVE_LCD_BITMAP |
116 | extern unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; | 116 | extern unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; |
117 | static unsigned char bmpheader[] = | 117 | static const unsigned char bmpheader[] = |
118 | { | 118 | { |
119 | 0x42, 0x4d, 0x3e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, | 119 | 0x42, 0x4d, 0x3e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, |
120 | 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x40, 0x00, | 120 | 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x40, 0x00, |
@@ -126,7 +126,7 @@ static unsigned char bmpheader[] = | |||
126 | 126 | ||
127 | static unsigned char buf[112*8]; | 127 | static unsigned char buf[112*8]; |
128 | static unsigned char buf2[112*8]; | 128 | static unsigned char buf2[112*8]; |
129 | static char dummy[2] = {0, 0}; | 129 | static const char dummy[2] = {0, 0}; |
130 | 130 | ||
131 | void screen_dump(void) | 131 | void screen_dump(void) |
132 | { | 132 | { |