diff options
author | tg <tg@FreeBSD.org> | 2001-05-22 11:28:28 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2001-05-22 11:28:28 +0000 |
commit | 1877189382c8b818d2a31c04ed8461fe77da92d1 (patch) | |
tree | 7d633b11b33c0b41598c4002e873ffc6379f78f2 /usr.bin/doscmd | |
parent | 510c2815e80f70ff89d94661ce6e15efa6ee7481 (diff) | |
download | FreeBSD-src-1877189382c8b818d2a31c04ed8461fe77da92d1.zip FreeBSD-src-1877189382c8b818d2a31c04ed8461fe77da92d1.tar.gz |
Fix DOS function 4c (exit with return code).
PR: 15528
Submitted by: Atushi Sakauchi <sakauchi@yamame.to>
Diffstat (limited to 'usr.bin/doscmd')
-rw-r--r-- | usr.bin/doscmd/dos.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/doscmd/dos.c b/usr.bin/doscmd/dos.c index 36e11ae..afd1d66 100644 --- a/usr.bin/doscmd/dos.c +++ b/usr.bin/doscmd/dos.c @@ -1705,6 +1705,7 @@ int21_4c(regcontext_t *REGS) { return_status = R_AL; done(REGS, R_AL); + return 0; } /* |