diff options
| author | graham sanderson <[email protected]> | 2023-03-02 14:32:22 -0600 |
|---|---|---|
| committer | graham sanderson <[email protected]> | 2023-03-02 14:32:22 -0600 |
| commit | b7fa90e7066fff8a529d02c2a51a3319f25c77f8 (patch) | |
| tree | 797381e716eb1a450e60a9093811cdcb8c19c8bf /examples/host | |
| parent | 34798ff85ec819bafc09da57f7853a1d116a7fff (diff) | |
rp2040: Fixup lib and example compile for LLVM Embedded Toolchain for ARM
Diffstat (limited to 'examples/host')
| -rw-r--r-- | examples/host/msc_file_explorer/src/msc_app.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/host/msc_file_explorer/src/msc_app.c b/examples/host/msc_file_explorer/src/msc_app.c index 5a1635015..eef28fe12 100644 --- a/examples/host/msc_file_explorer/src/msc_app.c +++ b/examples/host/msc_file_explorer/src/msc_app.c @@ -413,7 +413,7 @@ void cli_cmd_cat(EmbeddedCli *cli, char *args, void *context) { for(UINT c = 0; c < count; c++) { - const char ch = buf[c]; + const uint8_t ch = buf[c]; if (isprint(ch) || iscntrl(ch)) { putchar(ch); |
