ctk-curses: style fixes

Thanks tools/contiki-indent
This commit is contained in:
François Revol 2013-03-31 04:07:03 +02:00
parent a43601b2fc
commit 476be8de7e
1 changed files with 4 additions and 1 deletions

View File

@ -78,9 +78,11 @@ static unsigned char ctk_color_map[8] = {
}; };
/*-----------------------------------------------------------------------------------*/ /*-----------------------------------------------------------------------------------*/
static unsigned char map_color(unsigned char color) static unsigned char
map_color(unsigned char color)
{ {
unsigned char c; unsigned char c;
c = ctk_color_map[color & 0x0f]; c = ctk_color_map[color & 0x0f];
c |= ctk_color_map[(color >> 4) & 0x07] << 4; c |= ctk_color_map[(color >> 4) & 0x07] << 4;
return c; return c;
@ -450,6 +452,7 @@ char
ctk_arch_getkey(void) ctk_arch_getkey(void)
{ {
char k; char k;
console_read(); console_read();
k = keys[keys_out++]; k = keys[keys_out++];