]> sigrok.org Git - libsigrok.git/commitdiff
output/csv: Disable the dedup option by default.
authorUwe Hermann <redacted>
Wed, 5 Sep 2018 19:50:02 +0000 (21:50 +0200)
committerUwe Hermann <redacted>
Wed, 5 Sep 2018 19:50:02 +0000 (21:50 +0200)
Having this on by default is surprising to most users, since csv is
not usually associated with having a VCD-like dedup property/feature.

src/output/csv.c

index f892311205869ba0f65b4f9fa041a671b4e8b2a9..4752658716d1e827731c543411f40fa18893a9ff 100644 (file)
@@ -49,7 +49,7 @@
  * trigger: Whether or not to add a "trigger" column as the last column.
  *          Defaults to FALSE.
  *
- * dedup:   Don't output duplicate rows. Defaults to TRUE. If time is off, then
+ * dedup:   Don't output duplicate rows. Defaults to FALSE. If time is off, then
  *          this is forced to be off.
  */
 
@@ -660,7 +660,7 @@ static const struct sr_option *get_options(void)
                options[7].values = l;
                options[8].def = g_variant_ref_sink(g_variant_new_boolean(TRUE));
                options[9].def = g_variant_ref_sink(g_variant_new_boolean(FALSE));
-               options[10].def = g_variant_ref_sink(g_variant_new_boolean(TRUE));
+               options[10].def = g_variant_ref_sink(g_variant_new_boolean(FALSE));
        }
 
        return options;