mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 21:25:07 +00:00
Yet another pass of style fixes.
This commit is contained in:
parent
89040cdc99
commit
ec1c487dcd
43 changed files with 183 additions and 185 deletions
|
@ -87,7 +87,7 @@ static void loadKsyms(const ByteBuffer& buffer)
|
|||
|
||||
kprintf("Loading ksyms: \033[s");
|
||||
|
||||
while (bufptr < buffer.endPointer()) {
|
||||
while (bufptr < buffer.end_pointer()) {
|
||||
for (unsigned i = 0; i < 8; ++i)
|
||||
address = (address << 4) | parseHexDigit(*(bufptr++));
|
||||
bufptr += 3;
|
||||
|
@ -276,7 +276,7 @@ void init()
|
|||
MemoryManager::initialize();
|
||||
|
||||
VFS::initialize_globals();
|
||||
StringImpl::initializeGlobals();
|
||||
StringImpl::initialize_globals();
|
||||
|
||||
PIT::initialize();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue