eeek, that g_open() call had the correct number of arguments _before_

I "fixed" it...
This commit is contained in:
Sven Neumann 2005-03-04 21:02:10 +00:00
parent 74002a72e1
commit cc4e204b83
1 changed files with 1 additions and 2 deletions

View File

@ -814,8 +814,7 @@ gimp_text_buffer_save (GtkTextBuffer *buffer,
g_return_val_if_fail (filename != NULL, FALSE);
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
fd = g_open (filename,
O_WRONLY | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR, 0600);
fd = g_open (filename, O_WRONLY | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR);
if (fd == -1)
{