diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-31 17:37:18 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-31 17:37:18 +0200 |
commit | d57f771135f81003985d9332430332b93902f766 (patch) | |
tree | 68ae084795d380dededd36ac482763588e5a5c79 /src/ipcpd/normal/graph.c | |
parent | 662c7e7130c6d927ef1eb9999a187163b01e3ccf (diff) | |
download | ouroboros-d57f771135f81003985d9332430332b93902f766.tar.gz ouroboros-d57f771135f81003985d9332430332b93902f766.zip |
ipcpd: normal: Fix logs
This removes some logs in the graph component and replaces prints of
uin64_t variables with an architecture agnostic variant.
Diffstat (limited to 'src/ipcpd/normal/graph.c')
-rw-r--r-- | src/ipcpd/normal/graph.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ipcpd/normal/graph.c b/src/ipcpd/normal/graph.c index 5de7c15b..78ed203d 100644 --- a/src/ipcpd/normal/graph.c +++ b/src/ipcpd/normal/graph.c @@ -95,8 +95,6 @@ static struct edge * add_edge(struct vertex * vertex, list_add(&edge->next, &vertex->edges); - log_dbg("Added a new edge to the graph."); - return edge; } @@ -104,8 +102,6 @@ static void del_edge(struct edge * edge) { list_del(&edge->next); free(edge); - - log_dbg("Removed an edge of the graph."); } static struct vertex * add_vertex(struct graph * graph, @@ -132,8 +128,6 @@ static struct vertex * add_vertex(struct graph * graph, graph->nr_vertices++; - log_dbg("Added new vertex."); - return vertex; } @@ -152,8 +146,6 @@ static void del_vertex(struct graph * graph, free(vertex); - log_dbg("Removed a vertex from the graph."); - graph->nr_vertices--; } |