ladishd: fix log line

This commit is contained in:
Nedko Arnaudov 2011-05-16 06:54:22 +03:00
parent 7f512b33fc
commit facd3090fd
1 changed files with 1 additions and 1 deletions

View File

@ -2637,7 +2637,7 @@ void ladish_graph_dump(ladish_graph_handle graph_handle)
list_for_each(client_node_ptr, &graph_ptr->clients)
{
client_ptr = list_entry(client_node_ptr, struct ladish_graph_client, siblings);
log_info(" %s client '%s', id=%"PRIu64", ptr=%p%", client_ptr->hidden ? "invisible" : "visible", client_ptr->name, client_ptr->id, client_ptr->client);
log_info(" %s client '%s', id=%"PRIu64", ptr=%p", client_ptr->hidden ? "invisible" : "visible", client_ptr->name, client_ptr->id, client_ptr->client);
ladish_client_get_uuid(client_ptr->client, uuid);
uuid_unparse(uuid, uuid_str);