From 38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 21 Dec 2019 12:25:14 +0100 Subject: Some userspace improvements GAS is bad, NASM is awesome. --- src/userspace/mlibc/stdio/readline.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/userspace/mlibc/stdio/readline.c') diff --git a/src/userspace/mlibc/stdio/readline.c b/src/userspace/mlibc/stdio/readline.c index b948884..91b5da0 100644 --- a/src/userspace/mlibc/stdio/readline.c +++ b/src/userspace/mlibc/stdio/readline.c @@ -9,8 +9,8 @@ char *readline() while (buf != '\n') { buf = getch(); writec(buf); - strcpy(ret, buf); + strcpy(ret, &buf); } - strcpy(ret, buf); + strcpy(ret, &buf); return ret; } \ No newline at end of file -- cgit v1.2.3