Add missing default to switch/case block.
authorMartin Ling <martin-git@earth.li>
Wed, 27 Aug 2014 18:40:59 +0000 (19:40 +0100)
committerUwe Hermann <uwe@hermann-uwe.de>
Fri, 29 Aug 2014 19:33:59 +0000 (21:33 +0200)
pv/sigsession.cpp

index ac9c052b3bf9b8d50e66adac02efc670359fac4d..dfd0cedb6dc96877871bbbd4774dc1af77c2da2c 100644 (file)
@@ -634,6 +634,8 @@ void SigSession::data_feed_in(const struct sr_dev_inst *sdi,
                frame_ended();
                break;
        }
+       default:
+               break;
        }
 }