From: Stephen M. Cameron Date: Sun, 11 Mar 2012 10:34:38 +0000 (+0100) Subject: gfio: fix discrepancies between graph header and implementation X-Git-Tag: gfio-0.1~189 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=09ad20ff60eb8c11edf407c4060062dae187f5e7 gfio: fix discrepancies between graph header and implementation Header defined a couple functions as returning void, but they really return int. Signed-off-by: Stephen M. Cameron Signed-off-by: Jens Axboe --- diff --git a/graph.c b/graph.c index d7bdbe5f..1194510e 100644 --- a/graph.c +++ b/graph.c @@ -29,6 +29,7 @@ #include #include "tickmarks.h" +#include "graph.h" struct xyvalue { double x, y; diff --git a/graph.h b/graph.h index 39dd2b0e..7c3e862b 100644 --- a/graph.h +++ b/graph.h @@ -14,8 +14,8 @@ void graph_title(struct graph *g, const char *title); void graph_x_title(struct graph *g, const char *title); void graph_y_title(struct graph *g, const char *title); void graph_add_label(struct graph *g, const char *label); -void graph_add_data(struct graph *g, const char *label, const double value); -void graph_add_xy_data(struct graph *g, const char *label, +int graph_add_data(struct graph *g, const char *label, const double value); +int graph_add_xy_data(struct graph *g, const char *label, const double x, const double y); void graph_set_color(struct graph *g, const char *label, double red, double green, double blue);