]> sigrok.org Git - libsigrokdecode.git/blobdiff - type_decoder.c
type_decoder.c: Fix a compiler warning (-Wswitch-default).
[libsigrokdecode.git] / type_decoder.c
index 2bb361618f71e3d65ffa7c8c1b5605e3485be6a2..e69b3c4e0b11e32f870bf35861a2a0368e09c430 100644 (file)
@@ -125,8 +125,7 @@ static void release_binary(struct srd_proto_data_binary *pdb)
 {
        if (!pdb)
                return;
-       if (pdb->data)
-               g_free((void *)pdb->data);
+       g_free((void *)pdb->data);
        g_free(pdb);
 }
 
@@ -497,6 +496,8 @@ static int get_term_type(const char *v)
                return SRD_TERM_EITHER_EDGE;
        case 'n':
                return SRD_TERM_NO_EDGE;
+       default:
+               return -1;
        }
 
        return -1;