projects
/
collection4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7173d20
)
src/graph.c: Compare instances with "inst_compare" not "ident_compare".
author
Florian Forster
<ff@octo.it>
Wed, 7 Jul 2010 15:24:31 +0000
(17:24 +0200)
committer
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Wed, 7 Jul 2010 15:24:31 +0000
(17:24 +0200)
D'oh!
src/graph.c
patch
|
blob
|
history
diff --git
a/src/graph.c
b/src/graph.c
index
d3a8d6f
..
f2699e1
100644
(file)
--- a/
src/graph.c
+++ b/
src/graph.c
@@
-486,8
+486,8
@@
int graph_compare (graph_config_t *cfg, const graph_ident_t *ident) /* {{{ */
static int graph_sort_instances_cb (const void *v0, const void *v1) /* {{{ */
{
- return (i
dent_compare (*(graph_ident
_t * const *) v0,
- *(graph_i
dent
_t * const *) v1));
+ return (i
nst_compare (*(graph_instance
_t * const *) v0,
+ *(graph_i
nstance
_t * const *) v1));
} /* }}} int graph_sort_instances_cb */
int graph_sort_instances (graph_config_t *cfg) /* {{{ */