diff options
author | 2014-09-08 12:00:45 +0000 | |
---|---|---|
committer | 2014-09-08 12:00:45 +0000 | |
commit | 3568cf772fd4109cf437531aeda7b384cc3af786 (patch) | |
tree | eb17d8fae8ef89d0f5dffc3afabfbb0018f766bb /src/emu/machine/mc6843.c | |
parent | ad0cdb4ad20c67092de0412b768a6e2f52f19ff9 (diff) |
fixed most of the -Wunreachable-code-break and -Wunreachable-code-return warnings of clang 3.5 when compiling MESS (nw)
Diffstat (limited to 'src/emu/machine/mc6843.c')
-rw-r--r-- | src/emu/machine/mc6843.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/mc6843.c b/src/emu/machine/mc6843.c index d8e9e093d8e..e46f28e7f70 100644 --- a/src/emu/machine/mc6843.c +++ b/src/emu/machine/mc6843.c @@ -357,7 +357,7 @@ int mc6843_device::address_search( chrn_id* id ) } } - return 0; /* unreachable */ + //return 0; /* unreachable */ } |