X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fhex.c;h=8fcfcea456357c149fa80967356ef772b611383e;hb=0f523f2b45e84114add85cec5a97aed3f85f95e6;hp=5d9e0f556eebe8e3a52401d3a47af148b466dd93;hpb=6ec6c43b4738dbc7091f4a49a4ec80ea6102cb52;p=libsigrok.git diff --git a/src/output/hex.c b/src/output/hex.c index 5d9e0f55..8fcfcea4 100644 --- a/src/output/hex.c +++ b/src/output/hex.c @@ -180,7 +180,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; @@ -252,7 +252,7 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_output_module output_hex = { .id = "hex", .name = "Hexadecimal", - .desc = "Hexadecimal digits", + .desc = "Hexadecimal digits logic data", .exts = (const char*[]){"txt", NULL}, .flags = 0, .options = get_options,