Return 0 on success for the mount() and unmount() compatibility calls. Just cleaner.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39362 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2010-11-08 21:46:22 +00:00
parent d02cf2c481
commit f3319425ed
@@ -125,7 +125,7 @@ mount(const char *filesystem, const char *where, const char *device, ulong flags
errno = err;
return -1;
}
return err;
return 0;
}
@@ -139,6 +139,6 @@ unmount(const char *path)
errno = err;
return -1;
}
return err;
return 0;
}