Re: [XEN PATCH 7/7] vsprintf: address violations of MISRA C:2012 Rule 16.3

2024-04-03 Thread Federico Serafini
On 03/04/24 09:06, Jan Beulich wrote: On 02.04.2024 09:22, Federico Serafini wrote: MISRA C:2012 Rule 16.3 states: "An unconditional `break' statement shall terminate every switch-clause". Add break statement to address violations of the rule or add pseudo-keyword fallthrough to meet the requir

Re: [XEN PATCH 7/7] vsprintf: address violations of MISRA C:2012 Rule 16.3

2024-04-03 Thread Jan Beulich
On 02.04.2024 09:22, Federico Serafini wrote: > MISRA C:2012 Rule 16.3 states: "An unconditional `break' statement > shall terminate every switch-clause". > > Add break statement to address violations of the rule or add > pseudo-keyword fallthrough to meet the requirements to deviate it. While th