no leading underscore for S_IFOO constants

-Yosh
This commit is contained in:
Manish Singh 1999-09-01 06:15:59 +00:00
parent 5e64804c4b
commit 6320f26fb9
3 changed files with 10 additions and 2 deletions

View File

@ -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]

View File

@ -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)
{

View File

@ -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)
{