no leading underscore for S_IFOO constants
-Yosh
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user