From 7f042b7eb34e634407666b98d64c641bff74b26a Mon Sep 17 00:00:00 2001 From: ihidchaos Date: Mon, 12 Jun 2023 23:05:23 +0800 Subject: [PATCH] Update syscalls_stubs.cpp (#27187) Fix the redundant assignment equals sign, which causes compilation to fail. --- examples/platform/silabs/syscalls_stubs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/platform/silabs/syscalls_stubs.cpp b/examples/platform/silabs/syscalls_stubs.cpp index f6a845639c6e7c..685bd63f567bb5 100644 --- a/examples/platform/silabs/syscalls_stubs.cpp +++ b/examples/platform/silabs/syscalls_stubs.cpp @@ -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;