Skip to content
Snippets Groups Projects
Commit 41b1f400 authored by George Kiagiadakis's avatar George Kiagiadakis
Browse files

plugin-registry-impl: remove useless warning

parent 26ad8bca
No related branches found
No related tags found
No related merge requests found
......@@ -26,12 +26,10 @@ gboolean wp_plugin_registry_impl_invoke_internal (WpPluginRegistryImpl * self,
#define wp_plugin_registry_impl_invoke(r, func, data) \
G_STMT_START { \
if (!(0 ? func ((WpPlugin *) NULL, data) : \
wp_plugin_registry_impl_invoke_internal ( \
WP_PLUGIN_REGISTRY_IMPL (r), (WpPluginFunc) func, \
(gpointer) data))) { \
g_warning ("No plugin handled invocation to " #func); \
} \
(0 ? func ((WpPlugin *) NULL, data) : \
wp_plugin_registry_impl_invoke_internal ( \
WP_PLUGIN_REGISTRY_IMPL (r), (WpPluginFunc) func, \
(gpointer) data)); \
} G_STMT_END
G_END_DECLS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment