summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/graph.c
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-06-28 06:54:19 +0200
committerAllan McRae <allan@archlinux.org>2011-06-28 15:28:24 +0200
commit57b9b19b103a5d48a7116adfd546a516e121329c (patch)
tree659b396cec02543842184771214ca5dbd94c3262 /lib/libalpm/graph.c
parent08fc1db24c9d30f63c9ac858ab2cc50f64f8e38b (diff)
downloadpacman-57b9b19b103a5d48a7116adfd546a516e121329c.tar.gz
pacman-57b9b19b103a5d48a7116adfd546a516e121329c.tar.xz
Rename pmgraph_t to alpm_graph_t
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/graph.c')
-rw-r--r--lib/libalpm/graph.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libalpm/graph.c b/lib/libalpm/graph.c
index fc2c9e16..3a7f24b8 100644
--- a/lib/libalpm/graph.c
+++ b/lib/libalpm/graph.c
@@ -23,17 +23,17 @@
#include "util.h"
#include "log.h"
-pmgraph_t *_alpm_graph_new(void)
+alpm_graph_t *_alpm_graph_new(void)
{
- pmgraph_t *graph = NULL;
+ alpm_graph_t *graph = NULL;
- CALLOC(graph, 1, sizeof(pmgraph_t), return NULL);
+ CALLOC(graph, 1, sizeof(alpm_graph_t), return NULL);
return graph;
}
void _alpm_graph_free(void *data)
{
- pmgraph_t *graph = data;
+ alpm_graph_t *graph = data;
alpm_list_free(graph->children);
free(graph);
}