Skip to content

Commit 2afa251

Browse files
fix typo "serialzed" -> "serialized" (#2583)
Signed-off-by: fadhil riyanto <[email protected]>
1 parent 2e2651f commit 2afa251

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rp2_common/pico_stdio/stdio.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,8 @@ int PRIMARY_STDIO_FUNC(puts)(const char *s) {
315315
int REAL_FUNC(vprintf)(const char *format, va_list va);
316316

317317
int PRIMARY_STDIO_FUNC(vprintf)(const char *format, va_list va) {
318-
bool serialzed = stdout_serialize_begin();
319-
if (!serialzed) {
318+
bool serialized = stdout_serialize_begin();
319+
if (!serialized) {
320320
#if PICO_STDIO_IGNORE_NESTED_STDOUT
321321
return 0;
322322
#endif
@@ -337,7 +337,7 @@ int PRIMARY_STDIO_FUNC(vprintf)(const char *format, va_list va) {
337337
#else
338338
ret = REAL_FUNC(vprintf)(format, va);
339339
#endif
340-
if (serialzed) {
340+
if (serialized) {
341341
stdout_serialize_end();
342342
}
343343
return ret;

0 commit comments

Comments
 (0)