X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fchronovu_la8.c;h=c501238471695a6e61c16f3357210a4c8a693fe1;hb=bd4fda24074ce175d23a59cb15cceb19707fe6f1;hp=4263fc36751d55718be25725f3d7d9c1e8a1ee5a;hpb=a755b0e122105d934c4e7b97435420eda6df6e8e;p=libsigrok.git diff --git a/src/output/chronovu_la8.c b/src/output/chronovu_la8.c index 4263fc36..c5012384 100644 --- a/src/output/chronovu_la8.c +++ b/src/output/chronovu_la8.c @@ -87,7 +87,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; for (l = o->sdi->channels; l; l = l->next) { ch = l->data; @@ -115,7 +115,7 @@ static int receive(const struct sr_output *o, const struct sr_datafeed_packet *p *out = NULL; if (!o || !o->sdi) return SR_ERR_ARG; - if (!(ctx = o->internal)) + if (!(ctx = o->priv)) return SR_ERR_ARG; switch (packet->type) { @@ -172,12 +172,12 @@ static int cleanup(struct sr_output *o) if (!o || !o->sdi) return SR_ERR_ARG; - if (o->internal) { - ctx = o->internal; + if (o->priv) { + ctx = o->priv; g_string_free(ctx->pretrig_buf, TRUE); g_free(ctx->channel_index); - g_free(o->internal); - o->internal = NULL; + g_free(o->priv); + o->priv = NULL; } return SR_OK;