mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 11:55:07 +00:00
Some coding style fixes. I'm getting more comfortable with this style.
This commit is contained in:
parent
7d13432b55
commit
407bb3e76e
13 changed files with 207 additions and 207 deletions
|
@ -1,9 +1,9 @@
|
|||
#include "InodeIdentifier.h"
|
||||
#include "FileSystem.h"
|
||||
|
||||
ByteBuffer InodeIdentifier::readEntireFile() const
|
||||
ByteBuffer InodeIdentifier::read_entire_file() const
|
||||
{
|
||||
if (!fileSystem())
|
||||
if (!fs())
|
||||
return { };
|
||||
return fileSystem()->readEntireInode(*this, nullptr);
|
||||
return fs()->read_entire_inode(*this, nullptr);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue