Merge pull request #1222 from scoudreau/swo_logger

Remove unused-parameter errors when LOGGER=swo
This commit is contained in:
Ha Thach 2021-12-07 19:53:27 +07:00 committed by GitHub
commit cde824f17f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -126,6 +126,8 @@ TU_ATTR_USED int sys_write (int fhdl, const void *buf, size_t count)
TU_ATTR_USED int sys_read (int fhdl, char *buf, size_t count)
{
(void) fhdl;
(void) buf;
(void) count;
return 0;
}