Blob Blame History Raw
commit d5875e38412739155a6e3480cd5797d86fdda301
Author: Andrew Beekhof <andrew@beekhof.net>
Date:   Mon Sep 23 15:37:18 2013 +1000

    Log: crmd: Supply arguments in the correct order
    
    (cherry picked from commit 6cbe8c46fa82ab908d8b0731ad4995cc19b34cc4)

diff --git a/crmd/lrm.c b/crmd/lrm.c
index 2e17488..0254a9f 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) {