Skip to content

Commit 5a27356

Browse files
committed
output/csv: Set default "time" option value to false.
1 parent d649ff2 commit 5a27356

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/output/csv.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* Values are "channel", "units", "off". Defaults to "units".
4545
*
4646
* time: Whether or not the first column should include the time the sample
47-
* was taken. Defaults to TRUE.
47+
* was taken. Defaults to FALSE.
4848
*
4949
* trigger: Whether or not to add a "trigger" column as the last column.
5050
* Defaults to FALSE.
@@ -658,7 +658,7 @@ static const struct sr_option *get_options(void)
658658
l = g_slist_append(l, g_variant_ref_sink(g_variant_new_string("channel")));
659659
l = g_slist_append(l, g_variant_ref_sink(g_variant_new_string("off")));
660660
options[7].values = l;
661-
options[8].def = g_variant_ref_sink(g_variant_new_boolean(TRUE));
661+
options[8].def = g_variant_ref_sink(g_variant_new_boolean(FALSE));
662662
options[9].def = g_variant_ref_sink(g_variant_new_boolean(FALSE));
663663
options[10].def = g_variant_ref_sink(g_variant_new_boolean(FALSE));
664664
}

0 commit comments

Comments
 (0)