Revision 60fe76f3 monitor.c

b/monitor.c
76 76
static term_cmd_t term_cmds[];
77 77
static term_cmd_t info_cmds[];
78 78

  
79
static char term_outbuf[1024];
79
static uint8_t term_outbuf[1024];
80 80
static int term_outbuf_index;
81 81

  
82 82
static void monitor_start_input(void);
......
97 97
/* flush at every end of line or if the buffer is full */
98 98
void term_puts(const char *str)
99 99
{
100
    int c;
100
    char c;
101 101
    for(;;) {
102 102
        c = *str++;
103 103
        if (c == '\0')

Also available in: Unified diff