diff options
author | 2015-05-25 19:32:16 +0200 | |
---|---|---|
committer | 2015-05-25 19:32:31 +0200 | |
commit | e1e0e9edbd0e857997c4725703e562f715c9589b (patch) | |
tree | 2a6f3319ce7b9502b9323d6c183bcd5ad4b9e136 /src/emu/cpu | |
parent | 1763f18b96bea0c595cb350626164e41cc8e301d (diff) |
Fixed some clang 3.6 compilation errors and gcc -Wextra warnings. (nw)
Diffstat (limited to 'src/emu/cpu')
-rw-r--r-- | src/emu/cpu/pdp1/tx0.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/cpu/pdp1/tx0.c b/src/emu/cpu/pdp1/tx0.c index 8c2c9c33887..1a3ab230f4b 100644 --- a/src/emu/cpu/pdp1/tx0.c +++ b/src/emu/cpu/pdp1/tx0.c @@ -99,7 +99,9 @@ void tx0_device::tx0_write(offs_t address, int data) else /* toggle switch storage (TSS) */ /* TSS is read-only */ - ; + { + /* nothing */ + } } |