Add missing annotations to #endif directives (#2678)

This commit is contained in:
Kleis Auke Wolthuizen 2022-02-23 12:55:40 +01:00 committed by GitHub
parent 5ff96da873
commit a8b48e1442
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -652,7 +652,7 @@ plugin_free( Plugin *plug )
return( 0 );
}
#endif
#endif /*ENABLE_MODULES*/
/* Load a plugin.
*/
@ -790,7 +790,7 @@ im_close_plugins( void )
while( plugin_list )
if( plugin_free( (Plugin *) plugin_list->data ) )
return( -1 );
#endif
#endif /*ENABLE_MODULES*/
return( 0 );
}
@ -806,7 +806,7 @@ apply_plugin( Plugin *plug, VSListMap2Fn fn, void *a )
else
return( fn( plug->pack, a, NULL ) );
}
#endif
#endif /*ENABLE_MODULES*/
/* Map a function over all packages. Map over plugins first, to allow
* overriding of VIPS functions.

View File

@ -314,7 +314,7 @@ vips_load_plugins( const char *fmt, ... )
return( result );
}
#endif
#endif /*ENABLE_MODULES*/
/* Install this log handler to hide warning messages.
*/