From 410b53f7579da5659c68dc31fd2dc3a53f2a15a8 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Mon, 19 Sep 2016 17:20:59 +0200 Subject: [PATCH] DB: missing function prototype. --- plugins/db/plgdb.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/db/plgdb.c b/plugins/db/plgdb.c index 06f162e..446507a 100644 --- a/plugins/db/plgdb.c +++ b/plugins/db/plgdb.c @@ -40,6 +40,8 @@ static void zak_confi_pluggable_iface_init (ZakConfiPluggableInterface *iface); +static gboolean zak_confi_db_plugin_initialize (ZakConfiPluggable *pluggable, const gchar *cnc_string); + static GdaDataModel *zak_confi_db_plugin_path_get_data_model (ZakConfiPluggable *pluggable, const gchar *path); static gchar *zak_confi_db_plugin_path_get_value_from_db (ZakConfiPluggable *pluggable, const gchar *path); static void zak_confi_db_plugin_get_children (ZakConfiPluggable *pluggable, GNode *parentNode, gint idParent, gchar *path); @@ -177,7 +179,7 @@ zak_confi_db_plugin_finalize (GObject *object) G_OBJECT_CLASS (zak_confi_db_plugin_parent_class)->finalize (object); } -gboolean +static gboolean zak_confi_db_plugin_initialize (ZakConfiPluggable *pluggable, const gchar *cnc_string) { ZakConfiDBPlugin *plugin = ZAK_CONFI_DB_PLUGIN (pluggable); -- 2.49.0