From 7cf54c0dd286ccbc1e2ab637ce0439ddb8cb8338 Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Mon, 12 Jun 2023 19:14:30 -0700 Subject: [PATCH] [mammoth] Fix accidental switch fall through in crash --- lib/mammoth/src/debug.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/mammoth/src/debug.cpp b/lib/mammoth/src/debug.cpp index cbe8632..257b9a9 100644 --- a/lib/mammoth/src/debug.cpp +++ b/lib/mammoth/src/debug.cpp @@ -30,6 +30,7 @@ void check(uint64_t code) { return; case Z_ERR_UNIMPLEMENTED: dbgln("crash: UNIMPLEMENTED"); + break; case Z_ERR_CAP_NOT_FOUND: dbgln("crash: missing capability"); break;