removed a warning about missing default case

This commit is contained in:
Felix Ruess
2011-12-01 11:59:15 +01:00
parent 4af98cff08
commit 033b29c4f6
+2
View File
@@ -386,6 +386,8 @@ static bool_t user_gps_configure(bool_t cpt) {
case 1: case 1:
MtkSend_CFG(MTK_DIY_OUTPUT_RATE); MtkSend_CFG(MTK_DIY_OUTPUT_RATE);
return FALSE; return FALSE;
default:
break;
} }
return TRUE; /* Continue, except for the last case */ return TRUE; /* Continue, except for the last case */
} }