Skip to content

Commit

Permalink
Update syscalls_stubs.cpp
Browse files Browse the repository at this point in the history
Fix the redundant assignment equals sign, which causes compilation to fail.
  • Loading branch information
ihidchaos authored Jun 11, 2023
1 parent 40fb7c2 commit 51fb575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/platform/silabs/syscalls_stubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ int __attribute__((weak)) _read(int file, char * ptr, int len)
{
(void) file;
#if SILABS_LOG_OUT_UART
return = uartConsoleRead(ptr, len);
return uartConsoleRead(ptr, len);
#else
(void) ptr;
(void) len;
Expand Down

0 comments on commit 51fb575

Please sign in to comment.