diff options
Diffstat (limited to 'terminal/vt52.c')
| -rw-r--r-- | terminal/vt52.c | 4 |
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; } |
