time and TSC _fixed_, get long uint and uint now give guint64 and gint64
[lttv.git] / ltt / branches / poly / lttv / modules / text / textDump.c
index 5c4cd4261846b9029bedc3654acf657ba65bbfa2..ded3c89744c3b3402c9e1ad6ee81e20dca80bd9e 100644 (file)
@@ -63,11 +63,11 @@ void print_field(LttEvent *e, LttField *f, GString *s, gboolean field_names) {
   type = ltt_field_type(f);
   switch(ltt_type_class(type)) {
     case LTT_INT:
-      g_string_append_printf(s, " %ld", ltt_event_get_long_int(e,f));
+      g_string_append_printf(s, " %lld", ltt_event_get_long_int(e,f));
       break;
 
     case LTT_UINT:
-      g_string_append_printf(s, " %lu", ltt_event_get_long_unsigned(e,f));
+      g_string_append_printf(s, " %llu", ltt_event_get_long_unsigned(e,f));
       break;
 
     case LTT_FLOAT:
This page took 0.023096 seconds and 4 git commands to generate.