]> sigrok.org Git - libsigrok.git/blobdiff - src/output/vcd.c
configure.ac: Drop unneeded AC_CANONICAL_SYSTEM.
[libsigrok.git] / src / output / vcd.c
index 9d5ca8807a41bf5668fb33a3bb5b92e420d5c496..9d3516b74b30d8d22e9274f7251c1f9525a61af4 100644 (file)
@@ -39,9 +39,6 @@ struct context {
        uint64_t samplecount;
 };
 
-static const char *const vcd_header_comment =
-       "$comment\n  Acquisition with %d/%d channels at %s\n$end\n";
-
 static int init(struct sr_output *o, GHashTable *options)
 {
        struct context *ctx;
@@ -266,6 +263,7 @@ struct sr_output_module output_vcd = {
        .id = "vcd",
        .name = "VCD",
        .desc = "Value Change Dump",
+       .exts = (const char*[]){"vcd", NULL},
        .options = NULL,
        .init = init,
        .receive = receive,