types: more work on types

This commit is contained in:
Wim Taymans 2017-03-24 11:40:58 +01:00
parent acedfe71c0
commit 5825c62d6d
76 changed files with 1713 additions and 1477 deletions

View file

@ -187,26 +187,26 @@ dump_object (PinosContext *context,
uint32_t id,
DumpData *data)
{
if (type == context->uri.core) {
if (type == context->type.core) {
pinos_context_get_core_info (context,
dump_core_info,
data);
} else if (type == context->uri.node) {
} else if (type == context->type.node) {
pinos_context_get_node_info_by_id (context,
id,
dump_node_info,
data);
} else if (type == context->uri.module) {
} else if (type == context->type.module) {
pinos_context_get_module_info_by_id (context,
id,
dump_module_info,
data);
} else if (type == context->uri.client) {
} else if (type == context->type.client) {
pinos_context_get_client_info_by_id (context,
id,
dump_client_info,
data);
} else if (type == context->uri.link) {
} else if (type == context->type.link) {
pinos_context_get_link_info_by_id (context,
id,
dump_link_info,