Add missing break statement

This commit is contained in:
Paul Cornett
2017-11-02 08:55:00 -07:00
parent f200015b3c
commit c2513d8a4e

View File

@@ -412,6 +412,7 @@ void zlibStream::doDecompress_ExternalData(const unsigned char *data, const char
{ {
wxLogError(wxT("Data seems to not be zlib or gzip data!")); wxLogError(wxT("Data seems to not be zlib or gzip data!"));
} }
break;
default: default:
wxLogError(wxT("Unknown flag, skipping quick test.")); wxLogError(wxT("Unknown flag, skipping quick test."));
}; };