git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9592705
)
print child_hist unconditionally
author
Miloš Mulač
<mulac@civ.zcu.cz>
Tue, 13 Feb 2007 16:39:35 +0000
(16:39 +0000)
committer
Miloš Mulač
<mulac@civ.zcu.cz>
Tue, 13 Feb 2007 16:39:35 +0000
(16:39 +0000)
org.glite.lb.client/examples/job_status.c
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.client/examples/job_status.c
b/org.glite.lb.client/examples/job_status.c
index
374e023
..
b8c1581
100644
(file)
--- a/
org.glite.lb.client/examples/job_status.c
+++ b/
org.glite.lb.client/examples/job_status.c
@@
-230,7
+230,7
@@
static void printstat(edg_wll_JobStat stat, int level)
for (i=0; stat.children_states[i].state; i++)
printstat(stat.children_states[i], level+1);
printf("%schildren_hist :\n",ind);
- if (stat.children
&& stat.children
_hist)
+ if (stat.children_hist)
for (i=1; i<=stat.children_hist[0]; i++)
printf("%s%14s %d\n", ind, edg_wll_StatToString(i-1),stat.children_hist[i]);
}