You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
cc3200: Remove superflous assignment since the result is not used.
This commit is contained in:
+3
-3
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user