diff options
| author | Ha Thach <[email protected]> | 2023-03-06 15:24:51 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-06 15:24:51 +0700 |
| commit | 3387c8610876d15216d8ae3a0ce5e938824ead06 (patch) | |
| tree | b3eb003c82b63a87fc6027ea75198883eed90b7e /examples | |
| parent | 66da95a0eebcfb6e45980bc894d61b6bfd8fc0cc (diff) | |
| parent | b7fa90e7066fff8a529d02c2a51a3319f25c77f8 (diff) | |
Merge pull request #1933 from kilograham/rp2040_llvm_tweaks
make rp2040 code compile cleanly with LLVM embedded toochain for ARM.
Diffstat (limited to 'examples')
| -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); |
