Revert "Fixup L_CreaterExtIO"

It was correct before...

This reverts commit 2a3fc5ec71060b8e127e95c95c04a2b5ecd75e62.
This commit is contained in:
Matt Harlum 2025-01-03 18:24:22 +13:00
parent 1f479b1fa3
commit e15fdd1f50

View File

@ -92,7 +92,7 @@ struct IORequest* L_CreateExtIO(struct MsgPort *mp, ULONG size) {
if (mp) {
if ((ior=AllocMem(size,MEMF_PUBLIC|MEMF_CLEAR))) {
ior->io_Message.mn_Node.ln_Type = NT_MESSAGE;
ior->io_Message.mn_Node.ln_Type = NT_REPLYMSG;
ior->io_Message.mn_Length = size;
ior->io_Message.mn_ReplyPort = mp;
}