X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fhex.c;h=bad607513f653f385352faf954f7cb8903951521;hb=0f2627632944d27fcd561a8b3a4713869b326232;hp=1d4196381d3a706440eb1b52c468c6c20d6e4703;hpb=dcc55fe91aadf4396ce4a3b5db2898da39e1a6be;p=libsigrok.git diff --git a/src/output/hex.c b/src/output/hex.c index 1d419638..bad60751 100644 --- a/src/output/hex.c +++ b/src/output/hex.c @@ -235,10 +235,10 @@ static int cleanup(struct sr_output *o) static struct sr_option options[] = { { "width", "Width", "Number of samples per line", NULL, NULL }, - { 0 } + ALL_ZERO }; -static struct sr_option *get_options(void) +static const struct sr_option *get_options(void) { if (!options[0].def) { options[0].def = g_variant_new_uint32(DEFAULT_SAMPLES_PER_LINE); @@ -252,9 +252,9 @@ SR_PRIV struct sr_output_module output_hex = { .id = "hex", .name = "Hexadecimal", .desc = "Hexadecimal digits", + .exts = (const char*[]){"txt", NULL}, .options = get_options, .init = init, .receive = receive, .cleanup = cleanup, }; -