Skip to content

Commit b894737

Browse files
authored
Update syscalls_stubs.cpp (project-chip#27187)
Fix the redundant assignment equals sign, which causes compilation to fail.
1 parent 0b14ea3 commit b894737

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/platform/silabs/syscalls_stubs.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ int __attribute__((weak)) _read(int file, char * ptr, int len)
174174
{
175175
(void) file;
176176
#if SILABS_LOG_OUT_UART
177-
return = uartConsoleRead(ptr, len);
177+
return uartConsoleRead(ptr, len);
178178
#else
179179
(void) ptr;
180180
(void) len;

0 commit comments

Comments
 (0)