Skip to content

Commit

Permalink
Main: Dont use stdio vprintf
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryzee119 committed Nov 30, 2021
1 parent 2744c82 commit c08f3e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ extern "C" int CFG_TUSB_DEBUG_PRINTF(const char *format, ...)
{
va_list args;
va_start(args, format);
vprintf(format, args);
usb64_vprintf(format, args);
return 1;
}
#endif
Expand Down

0 comments on commit c08f3e5

Please sign in to comment.