mirror of https://github.com/GNOME/gimp.git
parent
5e64804c4b
commit
6320f26fb9
|
@ -1,3 +1,7 @@
|
|||
Tue Aug 31 23:13:51 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* app/tile_swap.c: no leading underscore for S_IFOO constants
|
||||
|
||||
Wed Sep 1 00:56:37 EDT 1999 Adrian Likins <adrian@gimp.org>
|
||||
|
||||
* app/gimpbrushpip.[ch]
|
||||
|
|
|
@ -378,7 +378,9 @@ tile_swap_open (SwapFile *swap_file)
|
|||
nopen_swap_files -= 1;
|
||||
}
|
||||
|
||||
swap_file->fd = open (swap_file->filename, O_CREAT|O_RDWR|_O_BINARY|_O_TEMPORARY, _S_IREAD|_S_IWRITE);
|
||||
swap_file->fd = open (swap_file->filename,
|
||||
O_CREAT | O_RDWR | _O_BINARY | _O_TEMPORARY,
|
||||
S_IREAD | S_IWRITE);
|
||||
|
||||
if (swap_file->fd == -1)
|
||||
{
|
||||
|
|
|
@ -378,7 +378,9 @@ tile_swap_open (SwapFile *swap_file)
|
|||
nopen_swap_files -= 1;
|
||||
}
|
||||
|
||||
swap_file->fd = open (swap_file->filename, O_CREAT|O_RDWR|_O_BINARY|_O_TEMPORARY, _S_IREAD|_S_IWRITE);
|
||||
swap_file->fd = open (swap_file->filename,
|
||||
O_CREAT | O_RDWR | _O_BINARY | _O_TEMPORARY,
|
||||
S_IREAD | S_IWRITE);
|
||||
|
||||
if (swap_file->fd == -1)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue