Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
f7384244
Commit
f7384244
authored
Jul 15, 2015
by
Daniel Campora
Browse files
cc3200: Remove superflous assignment since the result is not used.
parent
753a8e8b
Changes
1
Hide whitespace changes
Inline
Side-by-side
cc3200/mptask.c
View file @
f7384244
...
...
@@ -339,13 +339,13 @@ STATIC void mptask_init_sflash_filesystem (void) {
// create /flash/sys, /flash/lib and /flash/cert if they don't exist
if
(
FR_OK
!=
f_chdir
(
"/flash/sys"
))
{
res
=
f_mkdir
(
"/flash/sys"
);
f_mkdir
(
"/flash/sys"
);
}
if
(
FR_OK
!=
f_chdir
(
"/flash/lib"
))
{
res
=
f_mkdir
(
"/flash/lib"
);
f_mkdir
(
"/flash/lib"
);
}
if
(
FR_OK
!=
f_chdir
(
"/flash/cert"
))
{
res
=
f_mkdir
(
"/flash/cert"
);
f_mkdir
(
"/flash/cert"
);
}
f_chdir
(
"/flash"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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