seoul: adjust to g++ 8.3.0

Issue #3307
This commit is contained in:
Alexander Boettcher 2019-05-21 12:42:56 +02:00 committed by Christian Helmuth
parent b50e54b0a8
commit 753e78d122
3 changed files with 5 additions and 2 deletions

View File

@ -1 +1 @@
ded0f9c36aa2907b81cc1f9f6c875456f6bef9dd
b2a74773611d6bf383ed2b0401cef776cacdbc7b

View File

@ -4,7 +4,7 @@ DOWNLOADS := seoul.git
URL(seoul) := https://github.com/alex-ab/seoul.git
# branch PARAM
REV(seoul) := 34574b73e5fb9f72642a161cb83fdcb83684d404
REV(seoul) := 9150c6a129438feef80983e91e0a349da8bda25f
DIR(seoul) := src/app/seoul
#

View File

@ -206,6 +206,9 @@ bool Seoul::Disk::receive(MessageDisk &msg)
_motherboard()->bus_diskcommit.send(ro);
return true;
}
[[fallthrough]];
case MessageDisk::DISK_READ:
/* read and write handling */
return execute(msg.type == MessageDisk::DISK_WRITE, disk, msg);