fix
[lttv.git] / ltt / branches / poly / lttv / lttv / state.c
index 6aae5ad9e6658c7655d4a7f6e5b7f2824b67953c..c9b2b5ca1b7aac658413e28edd38c8574dd38133 100644 (file)
@@ -1956,7 +1956,7 @@ static gboolean irq_entry(void *hook_data, void *call_data)
   LttField *f = thf->f1;
 
   LttvExecutionSubmode submode;
-  guint64 irq = ltt_event_get_unsigned(e, f);
+  guint64 irq = ltt_event_get_long_unsigned(e, f);
   guint64 nb_irqs = ((LttvTraceState *)(s->parent.t_context))->nb_irqs;
   GString *string;
 
@@ -2006,7 +2006,7 @@ static gboolean soft_irq_entry(void *hook_data, void *call_data)
   LttField *f = thf->f1;
 
   LttvExecutionSubmode submode;
-  guint64 softirq = ltt_event_get_unsigned(e, f);
+  guint64 softirq = ltt_event_get_long_unsigned(e, f);
   guint64 nb_softirqs = ((LttvTraceState *)(s->parent.t_context))->nb_softirqs;
   GString *string;
 
This page took 0.023503 seconds and 4 git commands to generate.