The "close" call returns no arguments

This commit is contained in:
martin 2013-12-18 10:09:56 +00:00
parent 5aff38d633
commit 19817e28e0

View File

@ -1,4 +1,4 @@
/* $NetBSD: Locore.c,v 1.12 2011/05/21 15:50:42 tsutsui Exp $ */
/* $NetBSD: Locore.c,v 1.13 2013/12/18 10:09:56 martin Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -231,7 +231,7 @@ OF_close(int handle)
args.name = ADR2CELL("close");
args.nargs = 1;
args.nreturns = 1;
args.nreturns = 0;
args.handle = HDL2CELL(handle);
openfirmware(&args);
}