Il 27/05/2014 17:09, Gerd Hoffmann ha scritto:
> > default: > > goto error; > > } > > - abort();> > This is intentional defensive programming. A "break" from the switch > would be wrong, hence the "abort" here.Could be replaced with a "g_assert_notreach()" to make that more clear?
Sure. Paolo