X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fgnuplot.c;h=053f042495bdd45adbbb44f14e4f54c26fbf6c31;hb=0f2627632944d27fcd561a8b3a4713869b326232;hp=134fd9042df970c41220a7d28cc8d4061637fc0e;hpb=8a174d23427735617d69c7502ed8dcade786bbf9;p=libsigrok.git diff --git a/src/output/gnuplot.c b/src/output/gnuplot.c index 134fd904..053f0424 100644 --- a/src/output/gnuplot.c +++ b/src/output/gnuplot.c @@ -43,7 +43,6 @@ static const char *gnuplot_header2 = "\ # -----------------------------------------------------------------------------\n\ # 0\t\tSample counter (for internal gnuplot purposes)\n"; - static int init(struct sr_output *o, GHashTable *options) { struct context *ctx; @@ -220,8 +219,8 @@ static int cleanup(struct sr_output *o) SR_PRIV struct sr_output_module output_gnuplot = { .id = "gnuplot", .name = "Gnuplot", - .desc = "Gnuplot file format", - .exts = (const char*[]){"pl", NULL}, + .desc = "Gnuplot data file format", + .exts = (const char*[]){"dat", NULL}, .options = NULL, .init = init, .receive = receive,