Updated the comment in bfs_initialize() - which we don't need for R5 (as it's

never called).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6314 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-01-26 02:45:54 +00:00
parent 3154133754
commit aac1dff951

View File

@ -329,7 +329,10 @@ bfs_initialize(const char *deviceName, void *parms, size_t len)
{
FUNCTION_START(("deviceName = %s, parameter len = %ld\n", deviceName, len));
// ToDo: implement bfs_initialize()!
// This function is not available from the outside in BeOS
// It will be similarly implemented in OpenBeOS, though - the
// backend (to create the file system) is already done; just
// call Volume::Initialize().
return B_ERROR;
}