Skip to content

Commit

Permalink
Fix too many arguments issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Sep 18, 2020
1 parent f733088 commit 46a1cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lwprintf/src/system/lwprintf_sys_cmsis_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ lwprintf_sys_mutex_wait(LWPRINTF_CFG_OS_MUTEX_HANDLE* m) {

uint8_t
lwprintf_sys_mutex_release(LWPRINTF_CFG_OS_MUTEX_HANDLE* m) {
return osMutexRelease(*m, osWaitForever) == osOK;
return osMutexRelease(*m) == osOK;
}

#endif /* LWPRINTF_CFG_OS && !__DOXYGEN__ */

0 comments on commit 46a1cf4

Please sign in to comment.