just changed a comment in rootfs_open().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1005 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2002-09-09 09:51:51 +00:00
parent e3a2f2069e
commit 6cf8d733aa
1 changed files with 4 additions and 1 deletions

View File

@ -481,7 +481,10 @@ static status_t
rootfs_open(fs_cookie _fs, fs_vnode _v, int oflags, file_cookie *_cookie)
{
// allow to open the file, but it can't be done anything with it
*_cookie = NULL; // help rootfs_free_cookie() to knows if a rootfs_cookie should be free() or not!
*_cookie = NULL;
// initialize the cookie, because rootfs_free_cookie() relies on it
return B_OK;
}