]> sigrok.org Git - libsigrok.git/commitdiff
input: Avoid warnings on all-zero static struct entries.
authorBert Vermeulen <redacted>
Tue, 26 Aug 2014 10:38:41 +0000 (12:38 +0200)
committerBert Vermeulen <redacted>
Tue, 26 Aug 2014 10:38:41 +0000 (12:38 +0200)
src/input/binary.c
src/input/chronovu_la8.c
src/input/csv.c
src/input/vcd.c

index 11a3b4768f626b2566197e14d243636f809f6e2f..c2f9962c05518dc10e5bc8243c6143c56798e6ff 100644 (file)
@@ -138,7 +138,7 @@ static int cleanup(struct sr_input *in)
 static struct sr_option options[] = {
        { "numchannels", "Number of channels", "Number of channels", NULL, NULL },
        { "samplerate", "Sample rate", "Sample rate", NULL, NULL },
-       { 0 }
+       ALL_ZERO
 };
 
 static struct sr_option *get_options(void)
index 7c957febbb5673eacd7dfd68d627106e78961748..9adfe61aaab62c7a279e8bbc8e2840ac26ef348f 100644 (file)
@@ -150,7 +150,7 @@ static int cleanup(struct sr_input *in)
 static struct sr_option options[] = {
        { "numchannels", "Number of channels", "Number of channels", NULL, NULL },
        { "samplerate", "Sample rate", "Sample rate", NULL, NULL },
-       { 0 }
+       ALL_ZERO
 };
 
 static struct sr_option *get_options(void)
index ece68a98102ccfe670d14660f84a5b72711bc218..ab0830db55ebe86bc79ddad1e684410df5da277f 100644 (file)
@@ -767,7 +767,7 @@ static struct sr_option options[] = {
        { "first-channel", "First channel", "Column number of first channel", NULL, NULL },
        { "header", "Header", "Treat first line as header with channel names", NULL, NULL },
        { "startline", "Start line", "Line number at which to start processing samples", NULL, NULL },
-       { 0 }
+       ALL_ZERO
 };
 
 static struct sr_option *get_options(void)
index cfcecf30b21614ff62e457b88344f974aa5dd318..edddb68b8afddf68b9dc96139491f9d35c06b065 100644 (file)
@@ -524,7 +524,7 @@ static struct sr_option options[] = {
        { "skip", "Skip", "Skip until timestamp", NULL, NULL },
        { "downsample", "Downsample", "Divide samplerate by factor", NULL, NULL },
        { "compress", "Compress", "Compress idle periods longer than this value", NULL, NULL },
-       { 0 }
+       ALL_ZERO
 };
 
 static struct sr_option *get_options(void)