From 0365bbb5c58912fd24b3d33b90477d3de5d46d96 Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Fri, 15 May 2015 02:06:48 +0200 Subject: fixes and imporvements --- terminal/vt52.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'terminal') diff --git a/terminal/vt52.c b/terminal/vt52.c index 813cf40..aa24435 100644 --- a/terminal/vt52.c +++ b/terminal/vt52.c @@ -11,7 +11,7 @@ // REQUIREMENTS -// * kmalloc +// * kballoc // block alloc #include #include "kernel/kmalloc.h" @@ -33,7 +33,7 @@ typedef struct vt52_tty_struct vt52_tty *vt52_init() { - vt52_tty *tty=kmalloc(sizeof(vt52_tty)); + vt52_tty *tty=kballoc(sizeof(vt52_tty)); return tty; } -- cgit v1.2.3