mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 23:20:40 +00:00
Fix assert warning in r_fs_umount
This commit is contained in:
parent
6fc305c5e6
commit
819a13f816
@ -172,7 +172,7 @@ static int cmd_mount(void *data, const char *_input) {
|
||||
}
|
||||
break;
|
||||
case '-':
|
||||
r_fs_umount (core->fs, input+1);
|
||||
r_fs_umount (core->fs, input + 1);
|
||||
break;
|
||||
case 'j':
|
||||
{
|
||||
|
@ -184,7 +184,7 @@ static inline bool r_fs_match(const char* root, const char* path, int len) {
|
||||
}
|
||||
|
||||
R_API bool r_fs_umount(RFS* fs, const char* path) {
|
||||
r_return_val_if_fail (fs && path, NULL);
|
||||
r_return_val_if_fail (fs && path, false);
|
||||
RFSRoot* root;
|
||||
RListIter* iter, * riter = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user