From 841067b45e61bb8d5a1394d8bba25db1d2a23ea0 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Wed, 21 Feb 2001 23:01:11 +0000 Subject: - fix "init" on ppc (do not use minilibc on non-i386 arch's) - fix segfault of dietlibc-linked apps (broken va_stuff in dietlibc) - cleanup of "init" --- mdk-stage1/tools.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mdk-stage1/tools.c') diff --git a/mdk-stage1/tools.c b/mdk-stage1/tools.c index c67748ff5..9d0f083f6 100644 --- a/mdk-stage1/tools.c +++ b/mdk-stage1/tools.c @@ -50,11 +50,11 @@ void process_cmdline(void) log_message("opening /proc/cmdline... "); - if ((fd = open("/proc/cmdline", O_RDONLY, 0)) == -1) + if ((fd = open("/proc/cmdline", O_RDONLY)) == -1) fatal_error("could not open /proc/cmdline"); size = read(fd, buf, sizeof(buf)); - buf[size-1] = 0; + buf[size-1] = '\0'; // -1 to eat the \n close(fd); log_message("\t%s", buf); -- cgit v1.2.1