Fix garbled test output (#18822)

* Fix garbled test output

* Correct SRC listing
This commit is contained in:
Joel Challis 2022-10-23 04:30:17 +01:00 committed by GitHub
parent 1a1a3651d3
commit 64ca14feea
Failed to generate hash of commit
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ extern "C" {
#include "debug.h"
int8_t sendchar(uint8_t c) {
fprintf(stderr, "%c", c);
fprintf(stdout, "%c", c);
return 0;
}