diff options
author | Alex Chronopoulos <[email protected]> | 2020-01-22 13:00:49 +0200 |
---|---|---|
committer | Paul Adenot <[email protected]> | 2020-01-22 12:00:49 +0100 |
commit | d4b23d1e9b2857b5c6020c58b183fdd8dbe36921 (patch) | |
tree | f6725127a2f60788eb35813ad3b4892deba2e14f /src | |
parent | 0adc5ea9650acdbe5e1cc78ee0d0398400350c83 (diff) | |
download | cubeb-d4b23d1e9b2857b5c6020c58b183fdd8dbe36921.tar.gz cubeb-d4b23d1e9b2857b5c6020c58b183fdd8dbe36921.zip |
fix a few warnings (#571)
Diffstat (limited to 'src')
-rw-r--r-- | src/cubeb_utils.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cubeb_utils.cpp b/src/cubeb_utils.cpp index 85572a9..d42e951 100644 --- a/src/cubeb_utils.cpp +++ b/src/cubeb_utils.cpp @@ -19,5 +19,6 @@ size_t cubeb_sample_size(cubeb_sample_format format) default: // should never happen as all cases are handled above. assert(false); + return 0; } } |