projects
/
collection4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b53e616
)
src/graph_list.c: Sort the instances of all graphs.
author
Florian Forster
<ff@octo.it>
Wed, 7 Jul 2010 14:16:29 +0000
(16:16 +0200)
committer
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Wed, 7 Jul 2010 14:16:29 +0000
(16:16 +0200)
src/graph_list.c
patch
|
blob
|
history
diff --git
a/src/graph_list.c
b/src/graph_list.c
index
f5cb2e9
..
e0f2b97
100644
(file)
--- a/
src/graph_list.c
+++ b/
src/graph_list.c
@@
-467,6
+467,7
@@
int gl_update (void) /* {{{ */
{
time_t now;
int status;
+ size_t i;
/*
printf ("Content-Type: text/plain\n\n");
@@
-492,6
+493,9
@@
int gl_update (void) /* {{{ */
gl_last_update = now;
+ for (i = 0; i < gl_active_num; i++)
+ graph_sort_instances (gl_active[i]);
+
return (status);
} /* }}} int gl_update */