traceset position save fix
[lttv.git] / ltt / branches / poly / lttv / modules / text / textDump.c
index 96773a6c08bbff6d333736a97c3852fc0ee696f7..32259a6bb275fd71f2638e984dee395ba60c64a2 100644 (file)
@@ -92,8 +92,9 @@ void print_field(LttEvent *e, LttField *f, GString *s, gboolean field_names) {
       break;
 
     case LTT_ENUM:
-      g_string_append_printf(s, " %s", ltt_enum_string_get(type,
-          ltt_event_get_unsigned(e,f)-1));
+      g_string_append_printf(s, " %s", 
+          g_quark_to_string(ltt_enum_string_get(type,
+          ltt_event_get_unsigned(e,f)-1)));
       break;
 
     case LTT_ARRAY:
This page took 0.028671 seconds and 4 git commands to generate.