This commit is contained in:
Meco Man 2021-02-15 08:03:52 +08:00
parent abcb050603
commit 540bacad9c
1 changed files with 1 additions and 1 deletions

View File

@ -19,6 +19,6 @@ int remove(const char *val)
#ifndef RT_USING_DFS
return -1;
#else
return unlink(filename);
return unlink(val);
#endif
}