From 48aababf8b4420a3304cb8ac46ebdb5de6d7bd25 Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Thu, 28 Jan 2021 02:29:50 +0700 Subject: [PATCH] fix for fall through use --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index 4bc7d6a..8360d39 100644 --- a/src/internal.c +++ b/src/internal.c @@ -1615,7 +1615,7 @@ int wolfSSH_SendPacket(WOLFSSH* ssh) case WS_CBIO_ERR_GENERAL: ShrinkBuffer(&ssh->outputBuffer, 1); - FALL_THROUGH + FALL_THROUGH; } return WS_SOCKET_ERROR_E; }