mirror of https://github.com/GNOME/gimp.git
eeek, that g_open() call had the correct number of arguments _before_
I "fixed" it...
This commit is contained in:
parent
74002a72e1
commit
cc4e204b83
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue