aboutsummaryrefslogtreecommitdiffstats
path: root/trace-plot-task.c
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2012-03-24 17:45:12 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2012-03-24 17:45:12 -0400
commitb53dd6d749e0a164010f2cf1fedab2b10b8bb305 (patch)
treec241366acea35e0ab58509ef7b441c5299a1c0b8 /trace-plot-task.c
parentcc295d3e4924efd31c268a57f01b1412c6513301 (diff)
containers: abstracted out common task-type code
Diffstat (limited to 'trace-plot-task.c')
-rw-r--r--trace-plot-task.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/trace-plot-task.c b/trace-plot-task.c
index ec0029d..4bfa038 100644
--- a/trace-plot-task.c
+++ b/trace-plot-task.c
@@ -700,7 +700,7 @@ void task_plot_destroy(struct graph_info *ginfo, struct graph_plot *plot)
700 free(task_info); 700 free(task_info);
701} 701}
702 702
703static const struct plot_callbacks task_plot_cb = { 703const struct plot_callbacks task_plot_cb = {
704 .match_time = task_plot_match_time, 704 .match_time = task_plot_match_time,
705 .plot_event = task_plot_event, 705 .plot_event = task_plot_event,
706 .start = task_plot_start, 706 .start = task_plot_start,