diff options
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r-- | bfd/coffcode.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 2dea71a..146d679 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -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; |