summaryrefslogtreecommitdiff
path: root/terminal/vt52.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-15 02:06:48 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-15 02:06:48 +0200
commit0365bbb5c58912fd24b3d33b90477d3de5d46d96 (patch)
tree0e171394f0e9f508b6ff1a7971ce61ddf8b2f989 /terminal/vt52.c
parentfb8a5f18835e8811dd1a98b8eb5352151fc2df31 (diff)
fixes and imporvements
Diffstat (limited to 'terminal/vt52.c')
-rw-r--r--terminal/vt52.c4
1 files changed, 2 insertions, 2 deletions
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 <stdint.h>
#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;
}