mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:48:11 +00:00
Big, possibly complete sweep of naming changes.
This commit is contained in:
parent
27fa09aee4
commit
ffab6897aa
93 changed files with 830 additions and 885 deletions
|
@ -76,7 +76,7 @@ ByteBuffer Inode::read_entire(FileDescriptor* descriptor) const
|
|||
FS::DirectoryEntry::DirectoryEntry(const char* n, InodeIdentifier i, byte ft)
|
||||
: name_length(strlen(n))
|
||||
, inode(i)
|
||||
, fileType(ft)
|
||||
, file_type(ft)
|
||||
{
|
||||
memcpy(name, n, name_length);
|
||||
name[name_length] = '\0';
|
||||
|
@ -85,7 +85,7 @@ FS::DirectoryEntry::DirectoryEntry(const char* n, InodeIdentifier i, byte ft)
|
|||
FS::DirectoryEntry::DirectoryEntry(const char* n, size_t nl, InodeIdentifier i, byte ft)
|
||||
: name_length(nl)
|
||||
, inode(i)
|
||||
, fileType(ft)
|
||||
, file_type(ft)
|
||||
{
|
||||
memcpy(name, n, nl);
|
||||
name[nl] = '\0';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue