X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fbits.c;h=768a985ed84efe134cfedd091cd2810f3fb633a7;hb=5e7ac9f9ec414fd2e737ae88f845ae1f75456e15;hp=71cbd95a99a965d04722d29c905f28e0b67e58d4;hpb=6ec6c43b4738dbc7091f4a49a4ec80ea6102cb52;p=libsigrok.git diff --git a/src/output/bits.c b/src/output/bits.c index 71cbd95a..768a985e 100644 --- a/src/output/bits.c +++ b/src/output/bits.c @@ -167,7 +167,7 @@ static int receive(const struct sr_output *o, const struct sr_datafeed_packet *p /* Flush line buffers. */ g_string_append_len(*out, ctx->lines[j]->str, ctx->lines[j]->len); g_string_append_c(*out, '\n'); - if (j == ctx->num_enabled_channels - 1 && ctx->trigger > -1) { + if (j == ctx->num_enabled_channels - 1 && ctx->trigger > -1) { offset = ctx->trigger + ctx->trigger / 8; g_string_append_printf(*out, "T:%*s^ %d\n", offset, "", ctx->trigger); ctx->trigger = -1; @@ -238,7 +238,7 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_output_module output_bits = { .id = "bits", .name = "Bits", - .desc = "0/1 digits", + .desc = "0/1 digits logic data", .exts = (const char*[]){"txt", NULL}, .flags = 0, .options = get_options,