]> sigrok.org Git - libsigrokdecode.git/commitdiff
type_decoder.c: Fix a compiler warning (-Wswitch-default).
authorUwe Hermann <redacted>
Thu, 17 May 2018 21:25:42 +0000 (23:25 +0200)
committerUwe Hermann <redacted>
Thu, 17 May 2018 21:25:42 +0000 (23:25 +0200)
  type_decoder.c: In function ‘get_term_type’:
  type_decoder.c:486:2: warning: switch missing default case [-Wswitch-default]
    switch (v[0]) {
    ^~~~~~

type_decoder.c

index 9e0a27cf7738622aada2813e5ddfaa1457870d3d..e69b3c4e0b11e32f870bf35861a2a0368e09c430 100644 (file)
@@ -496,6 +496,8 @@ static int get_term_type(const char *v)
                return SRD_TERM_EITHER_EDGE;
        case 'n':
                return SRD_TERM_NO_EDGE;
                return SRD_TERM_EITHER_EDGE;
        case 'n':
                return SRD_TERM_NO_EDGE;
+       default:
+               return -1;
        }
 
        return -1;
        }
 
        return -1;