Skip to content

Commit

Permalink
Update syscalls_stubs.cpp (#27187)
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 and pull[bot] committed Jan 24, 2024
1 parent c9dbd40 commit 1129456
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 1129456

Please sign in to comment.