Avoid "statement not reached" error.

This commit is contained in:
John Gilmore
1991-07-09 02:36:38 +00:00
parent b8c50f0918
commit 8acc9e0558

View File

@ -1840,7 +1840,9 @@ DEFUN(coff_set_flags,(abfd, magicp, flagsp),
#endif
default: /* Unknown architecture */
return false;
/* return false; -- fall through to "return false" below, to avoid
"statement never reached" errors on the one below. */
break;
}
return false;