1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-16 08:15:31 +00:00

fix warning: break will never be executed

This commit is contained in:
Nick Briggs 2022-12-22 15:32:48 -08:00
parent 748c52fbaa
commit a1e5e6eecc

View File

@ -693,7 +693,6 @@ int print_opcode(int pc, DLbyte *addr, struct fnhead *fnobj) {
case 0:
putchar('\n'); /* End of function */
return (-1);
break;
case 015:
printf("(%d)", (unsigned char)GETBYTE(addr + 1));
addr += 1; /* FNX uses an extra byte */