Skip to content

Commit 61fb366

Browse files
committed
Fix typo in WriteLine parameter
1 parent b21f4d4 commit 61fb366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/platform/esp32/pw_sys_io/sys_io_esp32.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Status WriteByte(std::byte b)
9393
}
9494

9595
// Writes a string using pw::sys_io, and add newline characters at the end.
96-
StatusWithSize WriteLine(std::string_view &)
96+
StatusWithSize WriteLine(std::string_view &s)
9797
{
9898
size_t chars_written = 0;
9999
StatusWithSize result = WriteBytes(pw::as_bytes(pw::span(s)));

0 commit comments

Comments
 (0)