From a60df27e51df9d2a5d85df102d809d31d8d58ac6 Mon Sep 17 00:00:00 2001 From: Fabio <507164+falemagn@users.noreply.github.com> Date: Fri, 17 Nov 2023 17:34:22 +0100 Subject: [PATCH] Added missing semicolons. --- src/wolfsftp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wolfsftp.c b/src/wolfsftp.c index a7d26fb9..a3e933e6 100644 --- a/src/wolfsftp.c +++ b/src/wolfsftp.c @@ -5091,7 +5091,7 @@ int wolfSSH_SFTP_RecvLSTAT(WOLFSSH* ssh, int reqId, byte* data, word32 maxSz) /* Set the files mode * return WS_SUCCESS on success */ static int SFTP_SetMode(void* fs, char* name, word32 mode) { - WOLFSSH_UNUSED(fs) + WOLFSSH_UNUSED(fs); if (WCHMOD(fs, name, mode) != 0) { return WS_BAD_FILE_E; } @@ -5103,7 +5103,7 @@ static int SFTP_SetMode(void* fs, char* name, word32 mode) { /* Set the files mode * return WS_SUCCESS on success */ static int SFTP_SetModeHandle(void* fs, WFD handle, word32 mode) { - WOLFSSH_UNUSED(fs) + WOLFSSH_UNUSED(fs); if (WFCHMOD(fs, handle, mode) != 0) { return WS_BAD_FILE_E; }