On 20/09/2013, at 1:39 AM, Juraj Fabo <juraj.f...@gmail.com> wrote: > diff -urp pacemaker-Pacemaker-1.1.10.z0/crmd/lrm.c > pacemaker-Pacemaker-1.1.10/crmd/lrm.c > --- pacemaker-Pacemaker-1.1.10.z0/crmd/lrm.c 2013-07-26 > 00:02:31.000000000 +0000 > +++ pacemaker-Pacemaker-1.1.10/crmd/lrm.c 2013-08-27 > 10:10:57.000000000 +0000 > @@ -340,7 +340,7 @@ lrm_state_verify_stopped(lrm_state_t * l > lrm_state->pending_ops, stop_recurring_actions, lrm_state); > > crm_notice("Stopped %u recurring operations at %s (%u ops remaining)", > - g_hash_table_size(lrm_state->pending_ops), removed, when); > + g_hash_table_size(lrm_state->pending_ops), when, removed); > } > > if (lrm_state->pending_ops) {
Should be: diff --git a/crmd/lrm.c b/crmd/lrm.c index 734f73f..191625b 100644 --- a/crmd/lrm.c +++ b/crmd/lrm.c @@ -353,7 +353,7 @@ lrm_state_verify_stopped(lrm_state_t * lrm_state, enum crmd_fsa_state cur_state, lrm_state->pending_ops, stop_recurring_actions, lrm_state); crm_notice("Stopped %u recurring operations at %s (%u ops remaining)", - g_hash_table_size(lrm_state->pending_ops), when, removed); + removed, when, g_hash_table_size(lrm_state->pending_ops)); } if (lrm_state->pending_ops) {
signature.asc
Description: Message signed with OpenPGP using GPGMail
_______________________________________________ Pacemaker mailing list: Pacemaker@oss.clusterlabs.org http://oss.clusterlabs.org/mailman/listinfo/pacemaker Project Home: http://www.clusterlabs.org Getting started: http://www.clusterlabs.org/doc/Cluster_from_Scratch.pdf Bugs: http://bugs.clusterlabs.org