Fix dish ecinit
@seyoum please check code quality for the future, this MR is to fix a problem in the EC init which was very HARD to find
/* AVOID THIS */
if (cond)
then-stm
/* ... AND DO PREFER THIS */
if (cond) {
then-stm
}
@seyoum please check code quality for the future, this MR is to fix a problem in the EC init which was very HARD to find
/* AVOID THIS */
if (cond)
then-stm
/* ... AND DO PREFER THIS */
if (cond) {
then-stm
}