1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-17 14:11:06 +00:00

Fix -Wextra warnings from GCC 11

This commit is contained in:
Rémi Verschelde
2021-09-29 15:23:12 +02:00
parent 01ae4888e9
commit 6bdd84b8d5
5 changed files with 5 additions and 4 deletions

View File

@@ -235,6 +235,7 @@ int Compression::decompress_dynamic(PoolVector<uint8_t> *p_dst, int p_max_dst_si
switch (ret) {
case Z_NEED_DICT:
ret = Z_DATA_ERROR;
FALLTHROUGH;
case Z_DATA_ERROR:
case Z_MEM_ERROR:
case Z_STREAM_ERROR: