We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2651f commit 2afa251Copy full SHA for 2afa251
src/rp2_common/pico_stdio/stdio.c
@@ -315,8 +315,8 @@ int PRIMARY_STDIO_FUNC(puts)(const char *s) {
315
int REAL_FUNC(vprintf)(const char *format, va_list va);
316
317
int PRIMARY_STDIO_FUNC(vprintf)(const char *format, va_list va) {
318
- bool serialzed = stdout_serialize_begin();
319
- if (!serialzed) {
+ bool serialized = stdout_serialize_begin();
+ if (!serialized) {
320
#if PICO_STDIO_IGNORE_NESTED_STDOUT
321
return 0;
322
#endif
@@ -337,7 +337,7 @@ int PRIMARY_STDIO_FUNC(vprintf)(const char *format, va_list va) {
337
#else
338
ret = REAL_FUNC(vprintf)(format, va);
339
340
- if (serialzed) {
+ if (serialized) {
341
stdout_serialize_end();
342
}
343
return ret;
0 commit comments