make some char-pointer-arrays const, add default cases on all switches

This commit is contained in:
goldsimon 2010-03-26 14:11:55 +00:00
parent d8f5406985
commit bafc19addd
1 changed files with 5 additions and 2 deletions

View File

@ -101,7 +101,7 @@ quit: quits."NEWLINE"";
#define STAT_NUM (((5 + UDP_STATS) * 12) + (4) + (11 * 4) + (2 * 3))
static char *stat_msgs[STAT_NUM] = {
static const char *stat_msgs[STAT_NUM] = {
"Link level * transmitted ",
" * received ",
" forwarded ",
@ -232,7 +232,7 @@ static char *stat_msgs[STAT_NUM] = {
" * errors "
};
static char *stat_formats[STAT_NUM] = {
static const char *stat_formats[STAT_NUM] = {
U16_F, /* link xmit */
U16_F, /* link recv */
U16_F, /* link fw */
@ -1366,6 +1366,9 @@ error(s8_t err, struct netconn *conn)
case ETOOMANY:
sendstr("## Too many arguments to command given"NEWLINE, conn);
break;
default:
LWIP_ASSERT("Unknown error", 0);
break;
}
}
/*-----------------------------------------------------------------------------------*/