dump: print group name for mark

This commit is contained in:
Christian Hergert
2018-05-15 17:02:13 +01:00
parent 540ff0e05d
commit 91a45b3313

View File

@ -120,11 +120,12 @@ main (gint argc,
const SpCaptureMark *mark = sp_capture_reader_read_mark (reader);
g_print ("MARK: pid=%d time=%"G_GINT64_FORMAT"\n"
" group = %s\n"
" name = %s\n"
" duration = %"G_GUINT64_FORMAT"\n"
" message = %s\n",
mark->frame.pid, mark->frame.time,
mark->name, mark->duration, mark->message);
mark->group, mark->name, mark->duration, mark->message);
break;
}