Skip to content

Fix dish ecinit

Roberto Cavada requested to merge fix-dish-ecinit into master

@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
}

Merge request reports