core: open_output_file: Prepare for M2-Planet.
* src/posix.c (open_output_file): Prepare for M2-Planet.
This commit is contained in:
parent
285d04043f
commit
82213b960e
|
@ -258,8 +258,9 @@ open_output_file (SCM x) /*:((arity . n)) */
|
|||
SCM file_name = car (x);
|
||||
x = cdr (x);
|
||||
int mode = S_IRUSR | S_IWUSR;
|
||||
if (TYPE (x) == TPAIR && TYPE (car (x)) == TNUMBER)
|
||||
mode = VALUE (car (x));
|
||||
if (TYPE (x) == TPAIR)
|
||||
if (TYPE (car (x)) == TNUMBER)
|
||||
mode = VALUE (car (x));
|
||||
return make_number (mes_open (cell_bytes (STRING (file_name)), O_WRONLY | O_CREAT | O_TRUNC, mode));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue