1
0
mirror of https://github.com/cahirwpz/amigaos-gcc-2.95.3.git synced 2025-12-08 14:58:59 +00:00

Make gcc under Ubuntu 16.04 stop complaining about missing argument.

This commit is contained in:
Krystian Bacławski
2016-05-14 23:20:58 +02:00
parent 6ba543f9e2
commit a2dd1fb44f

View File

@ -1759,7 +1759,7 @@ collect_execute (prog, argv, redir)
if (redir)
{
/* Open response file. */
redir_handle = open (redir, O_WRONLY | O_TRUNC | O_CREAT);
redir_handle = open (redir, O_WRONLY | O_TRUNC | O_CREAT, 0666);
/* Duplicate the stdout and stderr file handles
so they can be restored later. */