Skip to content

Commit

Permalink
Added missing semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
falemagn authored Nov 17, 2023
1 parent 74c1523 commit a60df27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wolfsftp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit a60df27

Please sign in to comment.