Trivial fixes
[lttv.git] / lttv / lttv / print.c
index b303900a216b7328761bd7bc6e02d90e1c1c72e8..53873d22f19b70bf2577927cd0d26db93fe12dfc 100644 (file)
@@ -276,21 +276,20 @@ void lttv_event_to_string(LttEvent *e, GString *s,
   if(mandatory_fields) {
     time = ltt_event_time(e);
     g_string_append_printf(s,"%s.%s: %ld.%09ld (%s/%s_%u)",
-       g_quark_to_string(ltt_tracefile_name(tfs->parent.tf)),
-        g_quark_to_string(info->name),
-        (long)time.tv_sec, time.tv_nsec,
-       g_quark_to_string(
-               ltt_trace_name(ltt_tracefile_get_trace(tfs->parent.tf))),
-        g_quark_to_string(ltt_tracefile_name(tfs->parent.tf)),
-        cpu);
+      g_quark_to_string(ltt_tracefile_name(tfs->parent.tf)),
+      g_quark_to_string(info->name), (long)time.tv_sec, time.tv_nsec,
+      g_quark_to_string(
+        ltt_trace_name(ltt_tracefile_get_trace(tfs->parent.tf))),
+      g_quark_to_string(ltt_tracefile_name(tfs->parent.tf)), cpu);
     /* Print the process id and the state/interrupt type of the process */
     g_string_append_printf(s,", %u, %u, %s, %s, %u, 0x%" PRIx64", %s",
-                          process->pid,
-                          process->tgid,
-                          g_quark_to_string(process->name),
-                          g_quark_to_string(process->brand),
-                          process->ppid, process->current_function,
-                          g_quark_to_string(process->state->t));
+      process->pid,
+      process->tgid,
+      g_quark_to_string(process->name),
+      g_quark_to_string(process->brand),
+      process->ppid,
+      process->current_function,
+      g_quark_to_string(process->state->t));
   }
   
   if(marker_get_num_fields(info) == 0) return;
This page took 0.022856 seconds and 4 git commands to generate.