X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Ftext%2Fbits.c;h=b9b1347798c44656c5a1b5be59a2e03dd9557dc0;hb=f50f3f40d9238b0c50be67e52bc132aadfcf2050;hp=c124ece5a6c5f596c313ce0318a9690e87695336;hpb=97554432e8d8bcf7f5af2dd770bcf752c9cd7d75;p=libsigrok.git diff --git a/output/text/bits.c b/output/text/bits.c index c124ece5..b9b13477 100644 --- a/output/text/bits.c +++ b/output/text/bits.c @@ -25,12 +25,12 @@ #include "text.h" -int init_bits(struct output *o) +int init_bits(struct sr_output *o) { return init(o, DEFAULT_BPL_BITS, MODE_BITS); } -int data_bits(struct output *o, char *data_in, uint64_t length_in, +int data_bits(struct sr_output *o, char *data_in, uint64_t length_in, char **data_out, uint64_t *length_out) { struct context *ctx; @@ -50,7 +50,7 @@ int data_bits(struct output *o, char *data_in, uint64_t length_in, * (ctx->num_enabled_probes * max_linelen); if (!(outbuf = calloc(1, outsize + 1))) - return SIGROK_ERR_MALLOC; + return SR_ERR_MALLOC; outbuf[0] = '\0'; if (ctx->header) { @@ -98,11 +98,11 @@ int data_bits(struct output *o, char *data_in, uint64_t length_in, *data_out = outbuf; *length_out = strlen(outbuf); - return SIGROK_OK; + return SR_OK; } -struct output_format output_text_bits = { +struct sr_output_format output_text_bits = { "bits", "Bits (takes argument, default 64)", DF_LOGIC,