X-Git-Url: http://sigrok.org/gitweb/?p=sigrok-cli.git;a=blobdiff_plain;f=decode.c;fp=decode.c;h=8a52edac4aea5610b3443f1bcd59869f1a9d5a6a;hp=6b3490a1d4ce1b0b206e8dc0a073fbc9d7ab4ba4;hb=e9e4dc4d7ecc678cffaa9a93034319f7e02f33b9;hpb=551f570c7b6b572d83b93f961b13580d4839fff6 diff --git a/decode.c b/decode.c index 6b3490a..8a52eda 100644 --- a/decode.c +++ b/decode.c @@ -446,12 +446,12 @@ void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data) if (opt_loglevel <= SR_LOG_WARN) { /* Show only the longest annotation. */ - printf("%s", pda->ann_text[0]); + printf("%s: %s", pdata->pdo->proto_id, pda->ann_text[0]); } else if (opt_loglevel >= SR_LOG_INFO) { /* Sample numbers and quotes around the longest annotation. */ printf("%"PRIu64"-%"PRIu64"", pdata->start_sample, pdata->end_sample); if (opt_loglevel == SR_LOG_INFO) { - printf(" \"%s\"", pda->ann_text[0]); + printf(" %s \"%s\"", pdata->pdo->proto_id, pda->ann_text[0]); } else { /* Protocol decoder id, annotation class, * all annotation strings. */