From: Andrea Zagli Date: Mon, 15 Dec 2014 12:02:00 +0000 (+0100) Subject: Adjustments. X-Git-Tag: v0.10.0~26 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=fa275c8b290b80242ab82701a942d409e762d092;p=zakconfi%2Flibzakconfi Adjustments. --- diff --git a/.cproject b/.cproject index bb9fef9..df6a03c 100644 --- a/.cproject +++ b/.cproject @@ -20,10 +20,15 @@ - + diff --git a/.project b/.project index 9133bdc..a6320e8 100644 --- a/.project +++ b/.project @@ -25,7 +25,7 @@ - 1418643548370 + 1418644365711 26 @@ -34,7 +34,7 @@ - 1418643548373 + 1418644365716 22 @@ -43,7 +43,7 @@ - 1418643548377 + 1418644365720 22 @@ -52,7 +52,7 @@ - 1418643548381 + 1418644365728 22 @@ -61,7 +61,7 @@ - 1418643548384 + 1418644365732 22 @@ -70,7 +70,7 @@ - 1418643548388 + 1418644365736 22 @@ -79,7 +79,7 @@ - 1418643548408 + 1418644365740 22 @@ -88,7 +88,7 @@ - 1418643548412 + 1418644365746 22 @@ -97,7 +97,7 @@ - 1418643548496 + 1418644365751 22 @@ -106,7 +106,7 @@ - 1418643548510 + 1418644365755 22 @@ -115,7 +115,7 @@ - 1418643548513 + 1418644365761 22 @@ -124,7 +124,7 @@ - 1418643548516 + 1418644365766 22 @@ -133,7 +133,7 @@ - 1418643548521 + 1418644365770 22 @@ -142,7 +142,7 @@ - 1418643548528 + 1418644365774 22 @@ -151,7 +151,7 @@ - 1418643548531 + 1418644365778 22 @@ -160,7 +160,7 @@ - 1418643548535 + 1418644365783 22 @@ -169,7 +169,7 @@ - 1418643548538 + 1418644365786 22 @@ -178,7 +178,7 @@ - 1418643548542 + 1418644365790 22 @@ -187,7 +187,7 @@ - 1418643548546 + 1418644365794 22 @@ -196,7 +196,7 @@ - 1418643548549 + 1418644365797 22 @@ -205,7 +205,7 @@ - 1418643548553 + 1418644365801 22 @@ -214,7 +214,7 @@ - 1418643548556 + 1418644365805 22 @@ -223,7 +223,7 @@ - 1418643548560 + 1418644365837 22 @@ -232,7 +232,7 @@ - 1418643548564 + 1418644365843 22 @@ -241,7 +241,7 @@ - 1418643548568 + 1418644365846 22 @@ -250,7 +250,7 @@ - 1418643548572 + 1418644365853 22 @@ -258,5 +258,32 @@ 1.0-name-matches-false-false-stamp-h1 + + 1418644365860 + + 22 + + org.eclipse.ui.ide.multiFilter + 1.0-name-matches-false-false-*.dll + + + + 1418644365864 + + 22 + + org.eclipse.ui.ide.multiFilter + 1.0-name-matches-false-false-*.a + + + + 1418644365868 + + 22 + + org.eclipse.ui.ide.multiFilter + 1.0-name-matches-false-false-*.make + + diff --git a/src/confipluggable.c b/src/confipluggable.c index baf6015..7de8713 100644 --- a/src/confipluggable.c +++ b/src/confipluggable.c @@ -90,12 +90,12 @@ confi_pluggable_default_init (ConfiPluggableInterface *iface) gboolean confi_pluggable_initialize (ConfiPluggable *pluggable, const gchar *cnc_string) { - ConfiPluggableInterface *iface; + ConfiPluggableInterface *iface; - g_return_if_fail (CONFI_IS_PLUGGABLE (pluggable)); + g_return_value_if_fail (CONFI_IS_PLUGGABLE (pluggable), FALSE); - iface = CONFI_PLUGGABLE_GET_IFACE (pluggable); - g_return_if_fail (iface->initialize != NULL); + iface = CONFI_PLUGGABLE_GET_IFACE (pluggable); + g_return_value_if_fail (iface->initialize != NULL, FALSE); - return iface->initialize (pluggable, cnc_string); + return iface->initialize (pluggable, cnc_string); }