Fix error code

This commit is contained in:
Sebastian Messmer 2014-11-12 22:40:47 +01:00
parent 3b376aa048
commit 009b09df70
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ int CryFuse::mknod(const path &path, mode_t mode, dev_t rdev) {
UNUSED(mode);
UNUSED(path);
printf("Called non-implemented mknod(%s, %d, _)\n", path.c_str(), mode);
return 0;
return ENOSYS;
}
int CryFuse::mkdir(const path &path, mode_t mode) {