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
1 changed files with 1 additions and 1 deletions

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. */