Skip to content
Snippets Groups Projects
Commit b1f671d5 authored by swym's avatar swym
Browse files

fix(fatfs): accept 'b' in parse_modes

parent 507a13b4
No related branches found
No related tags found
No related merge requests found
...@@ -117,6 +117,7 @@ static inline bool parse_mode(const char *mstring, int *mode) ...@@ -117,6 +117,7 @@ static inline bool parse_mode(const char *mstring, int *mode)
case 'w': //fallthrough intentional case 'w': //fallthrough intentional
case 'a': //fallthrough intentional case 'a': //fallthrough intentional
case 'x': //fallthrough intentional case 'x': //fallthrough intentional
case 'b': //fallthrough intentional
break; break;
default: default:
return false; return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment