1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-28 20:41:30 +00:00

Fix the FastRetCALL macro to use do {} while (0) style (#384)

This commit is contained in:
Nick Briggs
2021-06-17 13:21:00 -07:00
committed by GitHub
parent f42671022f
commit 1c47bf5df0
2 changed files with 6 additions and 5 deletions

View File

@@ -168,7 +168,8 @@ void contextsw(register DLword fxnum, register DLword bytenum, register DLword f
CHECKFX;
if (EndSTKP < CurrentStackPTR) error("contextsw:Illegal ESP");
#endif
FastRetCALL return;
FastRetCALL;
return;
}
} /* end contextsw */