diff options
| author | Joel Challis <git@zvecr.com> | 2022-10-23 04:30:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-23 04:30:17 +0100 |
| commit | 64ca14feea586442516a2ec50d7335445f5f08f6 (patch) | |
| tree | 8c43cf58ab30252e95a10e71fe7459e2c6c0592b /tests/test_common | |
| parent | 1a1a3651d3ca6dfd8a09dd3e79498afbd54fa350 (diff) | |
Fix garbled test output (#18822)
* Fix garbled test output
* Correct SRC listing
Diffstat (limited to 'tests/test_common')
| -rw-r--r-- | tests/test_common/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_common/main.cpp b/tests/test_common/main.cpp index 3e4b4c0f95..0f4e320b07 100644 --- a/tests/test_common/main.cpp +++ b/tests/test_common/main.cpp | |||
| @@ -5,7 +5,7 @@ extern "C" { | |||
| 5 | #include "debug.h" | 5 | #include "debug.h" |
| 6 | 6 | ||
| 7 | int8_t sendchar(uint8_t c) { | 7 | int8_t sendchar(uint8_t c) { |
| 8 | fprintf(stderr, "%c", c); | 8 | fprintf(stdout, "%c", c); |
| 9 | return 0; | 9 | return 0; |
| 10 | } | 10 | } |
| 11 | 11 | ||
