Fixed small regression.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15229 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-12-10 08:50:11 +00:00
parent 4efe731c5e
commit fd0d4fe979
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ msg_t vfs_parse_match_separator(const char **pathp) {
msg_t err;
const char *p = *pathp;
if (vfs_parse_is_separator(*p++)) {
if (!vfs_parse_is_separator(*p++)) {
err = VFS_RET_ENOENT;
}
else {