Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
Final commit on this branch! Successfully saved paradox ;)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinAlavik committed Mar 24, 2024
1 parent ae67341 commit 680c198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/kernel/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ void init_boot(int debug_info)

nstatus = nighterm_initialize(font_data, framebuffer->address,
framebuffer->width, framebuffer->height,
framebuffer->pitch, framebuffer->bpp, malloc);
framebuffer->pitch, framebuffer->bpp, malloc, free);
}
else
{
Expand All @@ -87,7 +87,7 @@ void init_boot(int debug_info)

nstatus = nighterm_initialize(NULL, framebuffer->address,
framebuffer->width, framebuffer->height,
framebuffer->pitch, framebuffer->bpp, malloc);
framebuffer->pitch, framebuffer->bpp, malloc, free);
}

if (nstatus)
Expand Down

0 comments on commit 680c198

Please sign in to comment.