"Dann Corbit" <DCorbit@connx.com> writes:
> default:
> ; /* <<<<<<<<<< Just a semicolon added here <<<<<<<<<<<< */
> /* assert(false); */
> }
Personally I prefer writing
default: break;
Switch branches that don't have break or return at the end are trouble
waiting to happen, compiler glitches or no ...
Patched, thanks!
regards, tom lane