File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -85,8 +85,8 @@ most of the jobs above are pushed down into vips8 now ... except for
85
85
#define DEBUG
86
86
#define DEBUG_MAKE
87
87
#define DEBUG_RGB
88
- #define DEBUG_CHECK
89
88
#define DEBUG_OPEN
89
+ #define DEBUG_CHECK
90
90
*/
91
91
92
92
static iContainerClass * imageinfogroup_parent_class = NULL ;
@@ -901,13 +901,15 @@ imageinfo_open_image_input( const char *filename, ImageinfoOpen *open )
901
901
gboolean
902
902
imageinfo_is_from_file ( Imageinfo * imageinfo )
903
903
{
904
- return ( IOBJECT ( imageinfo )-> name && imageinfo -> from_file );
904
+ return ( IOBJECT ( imageinfo )-> name &&
905
+ imageinfo -> from_file );
905
906
}
906
907
907
908
static gint
908
909
imageinfo_attach_check_cb ( Imageinfo * imageinfo )
909
910
{
910
- if ( imageinfo_is_from_file ( imageinfo ) && imageinfo -> check_tid ) {
911
+ if ( imageinfo_is_from_file ( imageinfo ) &&
912
+ imageinfo -> check_tid ) {
911
913
struct stat buf ;
912
914
913
915
if ( !stat ( IOBJECT ( imageinfo )-> name , & buf ) &&
@@ -925,10 +927,11 @@ imageinfo_attach_check_cb( Imageinfo *imageinfo )
925
927
static void
926
928
imageinfo_attach_check ( Imageinfo * imageinfo )
927
929
{
928
- if ( imageinfo_is_from_file ( imageinfo ) && !imageinfo -> check_tid ) {
930
+ if ( imageinfo_is_from_file ( imageinfo ) &&
931
+ !imageinfo -> check_tid ) {
929
932
struct stat buf ;
930
933
931
- /* Need to be able to state to be able to track a file.
934
+ /* Need to be able to stat() to be able to track a file.
932
935
*/
933
936
if ( stat ( IOBJECT ( imageinfo )-> name , & buf ) )
934
937
return ;
You can’t perform that action at this time.
0 commit comments