Correct a couple of calloc calls

(Caught by Coverity.) tf->gdd_writes and tf->gdd_reads are arrays of
pointers so update their allocations to use the correct element size.

Signed-off-by: Andrew Price <anprice@redhat.com>
diff --git a/main.c b/main.c
index 92b0ef3..ebbcf3d 100644
--- a/main.c
+++ b/main.c
@@ -287,8 +287,8 @@
 		tf->queue_depth_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds);
 
 		tf->iop_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds);
-		tf->gdd_writes = calloc(alloc_ptrs, sizeof(struct graph_dot_data));
-		tf->gdd_reads = calloc(alloc_ptrs, sizeof(struct graph_dot_data));
+		tf->gdd_writes = calloc(alloc_ptrs, sizeof(struct graph_dot_data *));
+		tf->gdd_reads = calloc(alloc_ptrs, sizeof(struct graph_dot_data *));
 		tf->io_plots_allocated = alloc_ptrs;
 
 		if (tf->trace->mpstat_num_cpus == 0)