state.c: fix softirq typo
authorpmf <pmf@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 27 Nov 2007 16:43:12 +0000 (16:43 +0000)
committerpmf <pmf@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 27 Nov 2007 16:43:12 +0000 (16:43 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@2767 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/lttv/lttv/state.c

index bcdf3ef8a3dbc7aa573c04fe528c571aa53fabc7..d48c0e4c9c733c0aab238bff884c1a0cf246ba63 100644 (file)
@@ -1405,11 +1405,11 @@ static void state_save(LttvTraceState *self, LttvAttribute *container)
   }
 
   /* save the soft irq state */
-  nb_irqs = self->nb_irqs;
+  nb_soft_irqs = self->nb_soft_irqs;
   {
     value = lttv_attribute_add(container, LTTV_STATE_RESOURCE_SOFT_IRQS,
         LTTV_POINTER);
-    *(value.v_pointer) = lttv_state_copy_soft_irq_states(self->soft_irq_states, nb_irqs);
+    *(value.v_pointer) = lttv_state_copy_soft_irq_states(self->soft_irq_states, nb_soft_irqs);
   }
 
   /* save the blkdev states */
This page took 0.035697 seconds and 4 git commands to generate.