summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorgraham sanderson <[email protected]>2023-03-02 14:32:22 -0600
committergraham sanderson <[email protected]>2023-03-02 14:32:22 -0600
commitb7fa90e7066fff8a529d02c2a51a3319f25c77f8 (patch)
tree797381e716eb1a450e60a9093811cdcb8c19c8bf /examples
parent34798ff85ec819bafc09da57f7853a1d116a7fff (diff)
rp2040: Fixup lib and example compile for LLVM Embedded Toolchain for ARM
Diffstat (limited to 'examples')
-rw-r--r--examples/host/msc_file_explorer/src/msc_app.c2
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);