X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fgnuplot.c;fp=src%2Foutput%2Fgnuplot.c;h=8cd67b3e83b82c2d2d3356f49a61be66150487d9;hb=d686c5ec462a4044e049931e57d60e9d08df8cde;hp=7af417400ebd61c3cc336bbcd81bd1b7ea5cf203;hpb=dddabe37052d0d8c7fbd2ac3e15861e556c4814f;p=libsigrok.git diff --git a/src/output/gnuplot.c b/src/output/gnuplot.c index 7af41740..8cd67b3e 100644 --- a/src/output/gnuplot.c +++ b/src/output/gnuplot.c @@ -57,7 +57,7 @@ static int init(struct sr_output *o, GHashTable *options) return SR_ERR_ARG; ctx = g_malloc0(sizeof(struct context)); - o->internal = ctx; + o->priv = ctx; ctx->num_enabled_channels = 0; for (l = o->sdi->channels; l; l = l->next) { ch = l->data; @@ -96,7 +96,7 @@ static GString *gen_header(const struct sr_output *o) unsigned int num_channels, i; char *samplerate_s; - ctx = o->internal; + ctx = o->priv; if (ctx->samplerate == 0) { if (sr_config_get(o->sdi->driver, o->sdi, NULL, SR_CONF_SAMPLERATE, &gvar) == SR_OK) { @@ -144,9 +144,9 @@ static int receive(const struct sr_output *o, const struct sr_datafeed_packet *p unsigned int curbit, p, idx, i; *out = NULL; - if (!o || !o->internal) + if (!o || !o->priv) return SR_ERR_BUG; - ctx = o->internal; + ctx = o->priv; if (packet->type == SR_DF_META) { meta = packet->payload; @@ -207,9 +207,9 @@ static int cleanup(struct sr_output *o) { struct context *ctx; - if (!o || !o->internal) + if (!o || !o->priv) return SR_ERR_BUG; - ctx = o->internal; + ctx = o->priv; g_free(ctx->channel_index); g_free(ctx->prevsample); g_free(ctx);