diff options
-rw-r--r-- | ChangeLog (renamed from debian/changelog) | 5 | ||||
-rw-r--r-- | src/plugin.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/debian/changelog b/ChangeLog index 8eb91c7..64f9e84 100644 --- a/debian/changelog +++ b/ChangeLog @@ -1,6 +1,11 @@ +slv2 (0.4.5) unstable; urgency=low + + * Fix redland librdf_free_query_results warning + slv2 (0.4.4) unstable; urgency=low * Add slv2_port_has_property + * Add slv2_plugin_has_feature * Add plugin template and port signature interface for much faster plugin discovery with port input/output/type inspection. diff --git a/src/plugin.c b/src/plugin.c index b2af232..b77479f 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -259,6 +259,7 @@ slv2_plugin_load(SLV2Plugin p) librdf_free_query_results(results); librdf_free_query(q); + librdf_model_print(p->rdf, stdout); //printf("%p %s: NUM PORTS: %d\n", (void*)p, p->plugin_uri, slv2_plugin_get_num_ports(p)); } |