From facd3090fdc3df401e563d243b5667feca02d9cf Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Mon, 16 May 2011 06:54:22 +0300 Subject: [PATCH] ladishd: fix log line --- daemon/graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/graph.c b/daemon/graph.c index 96dd14e7..3019be8b 100644 --- a/daemon/graph.c +++ b/daemon/graph.c @@ -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);