mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 23:09:08 +00:00
Fix some minor build warnings.
This commit is contained in:
parent
347e202f7f
commit
f82b25d4f9
Notes:
sideshowbarker
2024-07-19 18:46:56 +09:00
Author: https://github.com/awesomekling
Commit: f82b25d4f9
3 changed files with 3 additions and 2 deletions
|
@ -338,6 +338,7 @@ OwnPtr<FileHandle> VirtualFileSystem::open(const String& path)
|
|||
OwnPtr<FileHandle> VirtualFileSystem::create(const String& path)
|
||||
{
|
||||
// FIXME: Do the real thing, not just this fake thing!
|
||||
(void) path;
|
||||
m_rootNode->fileSystem()->createInode(m_rootNode->fileSystem()->rootInode(), "empty", 0100644, 0);
|
||||
return nullptr;
|
||||
}
|
||||
|
@ -345,6 +346,7 @@ OwnPtr<FileHandle> VirtualFileSystem::create(const String& path)
|
|||
OwnPtr<FileHandle> VirtualFileSystem::mkdir(const String& path)
|
||||
{
|
||||
// FIXME: Do the real thing, not just this fake thing!
|
||||
(void) path;
|
||||
m_rootNode->fileSystem()->makeDirectory(m_rootNode->fileSystem()->rootInode(), "mydir", 0400755);
|
||||
return nullptr;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue