Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
90c01dab
Unverified
Commit
90c01dab
authored
Aug 19, 2021
by
Me No Dev
Committed by
GitHub
Aug 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build error in ESP-IDF
Fixes:
https://github.com/espressif/arduino-esp32/issues/5562
parent
000d967d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
cores/esp32/firmware_msc_fat.c
cores/esp32/firmware_msc_fat.c
+1
-1
No files found.
cores/esp32/firmware_msc_fat.c
View file @
90c01dab
...
...
@@ -29,7 +29,7 @@ static size_t cplstr(void *dst, const void * src, size_t max_len){
//copy up to max_len chars from src to dst, adding spaces up to max_len. do not terminate
static
void
cplstrsp
(
void
*
dst
,
const
void
*
src
,
size_t
max_len
){
size_t
l
=
cplstr
(
dst
,
src
,
max_len
);
for
(
l
;
l
<
max_len
;
l
++
){
for
(;
l
<
max_len
;
l
++
){
((
uint8_t
*
)
dst
)[
l
]
=
0x20
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment